FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread 名前空間 > SearchDialog クラス : StringNotFound イベント |
'Declaration Public Event StringNotFound As CancelEventHandler
'使用法 Dim instance As SearchDialog Dim handler As CancelEventHandler AddHandler instance.StringNotFound, handler
public event CancelEventHandler StringNotFound
イベント ハンドラが、このイベントに関連するデータを含む、CancelEventArgs 型の引数を受け取りました。次の CancelEventArgs プロパティには、このイベントの固有の情報が記載されます。
プロパティ | 説明 |
---|---|
Cancel |
FarPoint.Win.Spread.SearchDialog sd; fpSpread1.SearchWithDialog("Test"); sd = fpSpread1.SearchDialog; sd.StringNotFound += new CancelEventHandler(sdStringNotFound); void sdStringNotFound(object sender, CancelEventArgs e) { MessageBox.Show("The string was not found."); }
Dim WithEvents sd As FarPoint.Win.Spread.SearchDialog FpSpread1.SearchWithDialog("Test") sd = FpSpread1.SearchDialog sd.SetCustomTextToDefaults() Private Sub sdStringNotFound(ByVal sender As Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles sd.StringNotFound MessageBox.Show("The string was not found.") End Sub
SearchDialog クラス
SearchDialog メンバ
CancelEventHandler クラス
CancelEventArgs クラス