FarPoint.Win.Spread アセンブリ > FarPoint.Win.Spread 名前空間 : EditorNotifyEventHandler デリゲート |
'宣言
Public Delegate Sub EditorNotifyEventHandler( _ ByVal sender As Object, _ ByVal e As EditorNotifyEventArgs _ )
public delegate void EditorNotifyEventHandler( object sender, EditorNotifyEventArgs e )
各イベントの詳細については、FpSpreadクラスのそれぞれの説明を参照してください。
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