Version

FirstMonth Property

Determines the first visible Month displayed by the control.
Syntax
'Declaration
 
Public Property FirstMonth As Month
public Month FirstMonth {get; set;}
Remarks

Note, if the control is set to show months based on its size, it is possible to have the control display no months so the VisibleMonths collection should be checked to see what/how many months are visible.

Example
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
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;

}
Requirements

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

See Also