PowerTools SPREAD for ASP.NET 8.0J
OnClientChanged プロパティ (ComboBoxCellType)

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

プロパティ値

クライアント側のChangedイベントの設定を含むString
次のサンプルコードは、OnClientChangedプロパティを設定します。
FarPoint.Web.Spread.ComboBoxCellType ctest = new FarPoint.Web.Spread.ComboBoxCellType();
string[] cbstr;
cbstr = new String[] { "One", "Two", "Three" };
ctest.Items = cbstr;
ctest.OnClientChanged = "alert(\'You selected the item\');";
FpSpread1.Sheets[0].Cells[0, 0].CellType = ctest;
Dim ctest As New FarPoint.Web.Spread.ComboBoxCellType
Dim cbstr As String()
cbstr = New String() {"One", "Two", "Three"}
ctest.Items = cbstr
ctest.OnClientChanged = "alert('You changed the item');"
FpSpread1.Sheets(0).Cells(0, 0).CellType = ctest
参照

ComboBoxCellType クラス
ComboBoxCellType メンバ

 

 


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