Class AutoCompletePreMatchItemEventArgs
Event data for pre matching modifications.
Inheritance
System.Object
System.EventArgs
AutoCompletePreMatchItemEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.Windows.Forms.Tools
Assembly: Syncfusion.Tools.Windows.dll
Syntax
public class AutoCompletePreMatchItemEventArgs : EventArgs
Constructors
AutoCompletePreMatchItemEventArgs(String)
Creates an object of type AutoCompleteSelectedEventArgs and sets the internal object array with the information about the currently selected item.
Declaration
public AutoCompletePreMatchItemEventArgs(string currentText)
Parameters
Type | Name | Description |
---|---|---|
System.String | currentText | The array that holds the information about the currently selected item. |
Remarks
The array value set through this constructor can be accessed through the CurrentText property.
Properties
CurrentText
Gets / sets the currently selected item. The first item in the array is the first column of the matching item and so on for all the sub items.
Declaration
public string CurrentText { get; set; }
Property Value
Type |
---|
System.String |