SPREADの ButtonClicked イベント、ComboCloseUp イベント、 ComboDropDown イベント、 ComboSelChange イベント、 および EditChange イベント を処理する定義済みメソッドを表します。
次のサンプルコードは、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