Version

AllowMonthSelection Property

Determines whether clicking on the day of week area will select the days of that month.
Syntax
'Declaration
 
Public Property AllowMonthSelection As Boolean
public bool AllowMonthSelection {get; set;}
Example
This example enables/disables the control's month selection feature.

Private Sub EnableMonthSelection(ByVal enable As Boolean)

    If (Me.ultraMonthViewMulti1.AllowMonthSelection <> enable) Then
        Me.ultraMonthViewMulti1.AllowMonthSelection = enable
    End If

End Sub
private void EnableMonthSelection( bool enable )
{

	if ( this.ultraMonthViewMulti1.AllowMonthSelection != enable )
		this.ultraMonthViewMulti1.AllowMonthSelection = enable;

}
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