MESCIUS SPREAD for Windows Forms 15.0J
EditChange イベント
使用例 

ユーザーが編集モードセルのテキストを変更するときに発生します。
構文
'宣言
 
Public Event EditChange As EditorNotifyEventHandler
public event EditorNotifyEventHandler EditChange
イベント データ

イベント ハンドラが、このイベントに関連するデータを含む、EditorNotifyEventArgs 型の引数を受け取りました。次の EditorNotifyEventArgs プロパティには、このイベントの固有の情報が記載されます。

プロパティ解説
Columnエディタがイベントを発生させたセルの列インデックスを取得します。  
EditingControlイベントを発生させたControlオブジェクトを取得します。  
Rowエディタがイベントを発生させたセルの行インデックスを取得します。  
Viewエディタがイベントを発生させたセルを含むビューを取得します。  
解説

このイベントは、ユーザーが編集モードでセルのテキストを変更したときに OnEditChange メソッドによって呼び出されます。

個々のイベント引数の詳細については、EditorNotifyEventArgs メンバを参照してください。

使用例
次のサンプルコードは、ユーザーが編集モードのセルでテキストを変更したときにEditChangeイベントを発生させます。
fpSpread1.ActiveSheet.SetValue(0, 0, "ChangeMe");
Label1.Text = "Put the cell in edit mode and change the text.  This will fire the event";

private void fpSpread1_EditChange(object sender, FarPoint.Win.Spread.EditorNotifyEventArgs e)
{
     ListBox1.Items.Add("EditChange event fired!");
}
FpSpread1.ActiveSheet.SetValue(0, 0, "ChangeMe")
Label1.Text = "Put the cell in edit mode and change the text.  This will fire the event"

Private Sub FpSpread1_EditChange(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.EditorNotifyEventArgs) Handles FpSpread1.EditChange
     ListBox1.Items.Add("EditChange event fired!")
End Sub
参照

FpSpread クラス
FpSpread メンバ
EditModeOn イベント

 

 


© MESCIUS inc. All rights reserved.