バージョン

Spin プロパティ

スピン ボタンまたは上/下矢印キーで値をインクリメントまたはデクリメントされたときに呼び出される javascript 関数の名前を取得または設定します。
シンタックス
'宣言
 
Public Property Spin As String
public string Spin {get; set;}
解説

アクションはキャンセルできます。

使用例
Editor.ClientEvents.Spin = "Editor_Spin"
Editor.ClientEvents.Spin = "Editor_Spin";
// The client event 'Spin' takes two parameters sender and e
// sender  is the object which is raising the event
// e is the TextEditorSpinEventArgs

//ID of the editor raising the event is "Editor"


function Editor_Spin(sender, e) {


    //Gets the delta value of the spin event.
    //For WebTextEditor, delta returns +1 or -1 depending on the upper button or lower button
    //For Numeric and Date editors, delta returns + or - of the SpinDelta property value set on the 
    //server side depending on the lower or upper button.
    var delta = e.get_delta();
        
}
参照