PowerTools SPREAD for Windows Forms 8.0J
EditorNotifyEventHandler デリゲート


イベントのソース
イベントデータ
SPREADの ButtonClicked イベント、ComboCloseUp イベント、 ComboDropDown イベント、 ComboSelChange イベント、 および EditChange イベント を処理する定義済みメソッドを表します。
構文
'Declaration
 
Public Delegate Sub EditorNotifyEventHandler( _
   ByVal sender As Object, _
   ByVal e As EditorNotifyEventArgs _
) 
'使用法
 
Dim instance As New EditorNotifyEventHandler(AddressOf HandlerMethod)
public delegate void EditorNotifyEventHandler( 
   object sender,
   EditorNotifyEventArgs e
)

パラメータ

sender
イベントのソース
e
イベントデータ
解説

各イベントの詳細については、FpSpreadクラスのそれぞれの説明を参照してください。

次のサンプルコードは、EditorNotifyイベントを作成します。
fpSpread1.EditorNotify += new FarPoint.Win.Spread.EditorNotifyEventHandler(fpSpread1EditorNotify);

private void fpSpread1EditorNotify(object sender, FarPoint.Win.Spread.EditorNotifyEventArgs e)
{

}
Dim eh As FarPoint.Win.Spread.EditorNotifyEventHandler = AddressOf FpSpread1EditorNotify
AddHandler FpSpread1.EditorNotify, eh

Private Sub FpSpread1EditorNotify(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.EditorNotifyEventArgs) Handles FpSpread1.EditorNotify

End Sub
参照

EditorNotifyEventHandler メンバ
FarPoint.Win.Spread 名前空間
EditorNotifyEventArgs クラス

 

 


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