バージョン

MouseOut プロパティ (CalendarClientEvents)

カレンダーで有効な要素がブラウザーの mouse-out イベントを取得する時に呼び出される javascript 関数の名前を取得または設定します。
シンタックス
'宣言
 
Public Property MouseOut As String
public string MouseOut {get; set;}
使用例
WebMonthCalendar1.ClientEvents.MouseOut = "WebMonthCalendar1_MouseOut"
WebMonthCalendar1.ClientEvents.MouseOut = "WebMonthCalendar1_MouseOut";
// The client event 'MouseOut' takes two parameters sender and e
// sender  is the object which is raising the event
// e is the CalendarListOpeningEventArgs

function WebMonthCalendar1_MouseOut(sender, e) {

    window.status = "Mouse is out of the editor";
        
}
参照