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


先頭から検索を続けるかどうかを取得または設定します。
構文
'Declaration
 
Public Overridable Property RepeatFromStart As Boolean
'使用法
 
Dim instance As SearchDialog
Dim value As Boolean
 
instance.RepeatFromStart = value
 
value = instance.RepeatFromStart
public virtual bool RepeatFromStart {get; set;}

プロパティ値

Boolean:検索を先頭から繰り返す場合は True、それ以外の場合は False
次のサンプル コードは、テキストが見つかったシートのインデックスを返します。
FarPoint.Win.Spread.SearchDialog sd; 
fpSpread1.SearchWithDialog("Test"); 
sd = fpSpread1.SearchDialog; 
int i = sd.FoundSheetIndex(); 
sd.RepeatFromStart = false; 
string[] s = sd.SearchStrings();
Dim sd As FarPoint.Win.Spread.SearchDialog
FpSpread1.SearchWithDialog("Test")
sd = FpSpread1.SearchDialog
Dim i As Integer = sd.FoundSheetIndex()
sd.RepeatFromStart = False
Dim s As String() = sd.SearchStrings()
参照

SearchDialog クラス
SearchDialog メンバ

 

 


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