PowerTools SPREAD for ASP.NET 8.0J
OnClientClick プロパティ (CheckBoxCellType)

セルのOnClientClickイベント設定を取得または設定します。
構文
'Declaration
 
Public Property OnClientClick As String
public string OnClientClick {get; set;}
次のサンプルコードは、OnClientClickプロパティを設定します。
FarPoint.Web.Spread.CheckBoxCellType check = new FarPoint.Web.Spread.CheckBoxCellType();
check.OnClientClick = "alert(\'You clicked the cell\');";
FpSpread1.Sheets[0].Cells[1, 1].CellType = check;

Dim check As New FarPoint.Web.Spread.CheckBoxCellType()
check.OnClientClick = "alert('You clicked the cell');"
FpSpread1.Sheets(0).Cells(0, 0).CellType = check

参照

CheckBoxCellType クラス
CheckBoxCellType メンバ

 

 


© 2003-2015, GrapeCity inc. All rights reserved.