バージョン

MouseDown プロパティ (CalendarClientEvents)

ブラウザーの mousedown イベントで呼び出される javascript 関数の名前を取得または設定します。
シンタックス
'宣言
 
Public Property MouseDown As String
public string MouseDown {get; set;}
解説

sender.idFromMouse(eventArgs.get_browserEvent()) で返される値を使用してマウス ポインターが置かれている要素の id を確認できます。

イベントがトリガーされた動作はキャンセルできます。

使用例
WebMonthCalendar1.ClientEvents.MouseDown = "WebMonthCalendar1_MouseDown"
WebMonthCalendar1.ClientEvents.MouseDown = "WebMonthCalendar1_MouseDown";
// The client event 'MouseDown' takes two parameters sender and e
// sender  is the object which is raising the event
// e is the CancelEventArgs

function WebMonthCalendar1_MouseDown(sender, e) {

    if (!confirm("Are you sure you want to click the mouse?"))

        //Cancels the MouseDown event      
        e.set_cancel(true);

}
参照