PowerTools SPREAD for Windows Forms 8.0J
SearchDialog プロパティ


このコンポーネントでシートのセルのテキスト検索に関連付けられたダイアログを取得します。
構文
'Declaration
 
Public ReadOnly Property SearchDialog As SearchDialog
'使用法
 
Dim instance As FpSpread
Dim value As SearchDialog
 
value = instance.SearchDialog
public SearchDialog SearchDialog {get;}

プロパティ値

検索ダイアログを含むSearchDialogオブジェクト
解説

検索メソッドは次のように動作します。

このプロパティが使用できるのは実行時のみです。

次のサンプルコードは、検索ダイアログを設定します。
fpSpread1.SearchWithDialog(""); 
fpSpread1.SearchDialog.AlternateSearch = true; 
fpSpread1.SearchDialog.CaseSensitive = false; 
fpSpread1.SearchDialog.ExactMatch = false;  
fpSpread1.SearchDialog.SearchString = "155"; 
fpSpread1.SearchDialog.SheetIndex = 0; 
fpSpread1.SearchDialog.StartColumnIndex = 0; 
fpSpread1.SearchDialog.StartRowIndex = 0; 
fpSpread1.SearchDialog.UseWildcards = false;  
FpSpread1.SearchWithDialog("") 
FpSpread1.SearchDialog.AlternateSearch = True 
FpSpread1.SearchDialog.CaseSensitive = False 
FpSpread1.SearchDialog.ExactMatch = False 
FpSpread1.SearchDialog.SearchString = "155" 
FpSpread1.SearchDialog.SheetIndex = 0 
FpSpread1.SearchDialog.StartColumnIndex = 0 
FpSpread1.SearchDialog.StartRowIndex = 0 
FpSpread1.SearchDialog.UseWildcards = False  
参照

FpSpread クラス
FpSpread メンバ
Search メソッド
SearchWithDialog メソッド

開発者ガイド

検索ダイアログ

 

 


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