PowerTools SPREAD for Windows Forms 8.0J
OnStringNotFound メソッド


イベント引数
検索時に一致する項目が見つからなかったときに発生します。
構文
'Declaration
 
Public Overridable Function OnStringNotFound( _
   ByVal e As CancelEventArgs _
) As Boolean
'使用法
 
Dim instance As SearchDialog
Dim e As CancelEventArgs
Dim value As Boolean
 
value = instance.OnStringNotFound(e)
public virtual bool OnStringNotFound( 
   CancelEventArgs e
)

パラメータ

e
イベント引数

戻り値の型

BooleanStringNotFound イベント(このメソッドの内部で発生する)がキャンセルされた場合は True、それ以外の場合は False
次のサンプル コードでは、このイベントを使用して、文字列が見つからなかったことをユーザーに知らせています。
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 メンバ

 

 


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