Spread Windows Forms 12.0 Product Documentation
SearchStrings Property
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SearchDialog Class : SearchStrings Property
Gets the strings that were searched for in the search dialog.
Syntax
'Declaration
 
Public Overridable Property SearchStrings As String()
'Usage
 
Dim instance As SearchDialog
Dim value() As String
 
instance.SearchStrings = value
 
value = instance.SearchStrings
public virtual string[] SearchStrings {get; set;}

Property Value

String array containing the search strings
Example
This example returns the index of the sheet where the text was found.
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()
See Also

Reference

SearchDialog Class
SearchDialog Members