バージョン

MouseOver プロパティ (CalendarClientEvents)

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

function WebMonthCalendar1_MouseOver(sender, e) {


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