FarPoint.Win.Spread
UseWildcards Property
See Also  Example
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SearchDialog Class : UseWildcards Property


Gets or sets whether to use wildcard characters in the search.

Syntax

Visual Basic (Declaration) 
Public Overridable Property UseWildcards As Boolean
Visual Basic (Usage)Copy Code
Dim instance As SearchDialog
Dim value As Boolean
 
instance.UseWildcards = value
 
value = instance.UseWildcards
C# 
public virtual bool UseWildcards {get; set;}

Return Value

Boolean: true to use wildcard characters in the search; false otherwise

Example

C#Copy Code
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;
Visual BasicCopy Code
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

See Also