MESCIUS SPREAD for ASP.NET 10.0J
OnClientClick プロパティ (ButtonCellType)

セルのOnClientClickイベント設定を取得または設定します。
構文
'Declaration
 
Public Property OnClientClick As String
public string OnClientClick {get; set;}

プロパティ値

セルのClientClickイベントの設定を含むString
次のサンプルコードは、ユーザーがセルのボタンを押したときに警告をポップアップします。
FarPoint.Web.Spread.ButtonCellType btn = new FarPoint.Web.Spread.ButtonCellType();
btn.OnClientClick = "alert(\'You clicked the button\');";
FpSpread1.ActiveSheetView.Cells[1, 1].CellType = btn;
Dim btn As New FarPoint.Web.Spread.ButtonCellType
btn.OnClientClick = "alert('You clicked the button');"

FpSpread1.ActiveSheetView.Cells(1, 1).CellType = btn
参照

ButtonCellType クラス
ButtonCellType メンバ

 

 


© MESCIUS inc. All rights reserved.