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.
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; }
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