Spread Windows Forms 9.0 Product Documentation
SetCustomTextToDefaults Method (SearchDialog)
Example 


Sets the custom text in the form to default values.
Syntax
'Declaration
 
Public Overridable Sub SetCustomTextToDefaults() 
'Usage
 
Dim instance As SearchDialog
 
instance.SetCustomTextToDefaults()
public virtual void SetCustomTextToDefaults()
Remarks
This method resets the custom text in the advanced search form to default values.
Example
This example sets the custom text then resets it to the default values when a button is clicked.This example sets the custom text of the dialog back to the defaults.
fpSpread1.SearchWithDialog("155");

fpSpread1.SearchDialog.SetCustomText("Searching For", "Case Does not Matter", "Does not Need To Be Exact", "Use Other Search
Method", "Wildcards Or Not", "Next", "New Search", "Bye-Bye", "Didn't Find It");



private void button2_Click(object sender, System.EventArgs e)

{

fpSpread1.SearchDialog.SetCustomTextToDefaults();

}
FpSpread1.SearchWithDialog("155")

FpSpread1.SearchDialog.SetCustomText("Searching For", "Case Does not Matter", "Does not Need To Be Exact", "Use Other Search
Method", "Wildcards Or Not", "Next", "New Search", "Bye-Bye", "Didn't Find It")



Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
FpSpread1.SearchDialog.SetCustomTextToDefaults()

End Sub

FarPoint.Win.Spread.SearchDialog sd;
fpSpread1.SearchWithDialog("Test");
sd = fpSpread1.SearchDialog;
sd.StringNotFound += new CancelEventHandler(sdStringNotFound);
sd.SetCustomTextToDefaults();
Dim WithEvents sd As FarPoint.Win.Spread.SearchDialog
FpSpread1.SearchWithDialog("Test")
sd = FpSpread1.SearchDialog
sd.SetCustomTextToDefaults()
Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10

See Also

Reference

SearchDialog Class
SearchDialog Members
SetCustomText Method

 

 


Copyright © GrapeCity, inc. All rights reserved.