バージョン 24.2 (最新)

AllowMonthSelection プロパティ

曜日領域でクリックしたときにその月の日が選択されるかどうかを決定します。
シンタックス
public bool AllowMonthSelection {get; set;}
使用例
Private Sub EnableMonthSelection(ByVal enable As Boolean)

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

End Sub
'宣言
 
Public Property AllowMonthSelection As Boolean
 
private void EnableMonthSelection( bool enable )
{

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

}
'宣言
 
Public Property AllowMonthSelection As Boolean
 
参照