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


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

パラメータ

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-2017, GrapeCity inc. All rights reserved.