Determines the first visible
Month displayed by the control.
This example uses the FirstMonth property to display the current month.
Private Sub SetFirstMonthToCurrentMonth()
' Get the current month
Dim month As Infragistics.Win.UltraWinSchedule.Month
month = Me.ultraMonthViewMulti1.CalendarInfo.GetMonth(DateTime.Today)
' Set the control's FirstMonth property to the current month
Me.ultraMonthViewMulti1.FirstMonth = month
End Sub
'Declaration
Public Property FirstMonth As Month
private void SetFirstMonthToCurrentMonth()
{
// Get the current month
Infragistics.Win.UltraWinSchedule.Month month;
month = this.ultraMonthViewMulti1.CalendarInfo.GetMonth( DateTime.Today );
// Set the control's FirstMonth property to the current month
this.ultraMonthViewMulti1.FirstMonth = month;
}
'Declaration
Public Property FirstMonth As Month
Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2