'Declaration
Public Event TextEdited As EventHandler(Of TextEditedEventArgs)
public event EventHandler<TextEditedEventArgs> TextEdited
Event Data
The event handler receives an argument of type TextEditedEventArgs containing data related to this event. The following TextEditedEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Cancel | Cancel the input of the new text. |
CurrentSelectionStart | Current selection start. |
CurrentText | Current text. |
LastKey | Gets or sets the last key. |
NewSelectionStart | Index where the selection will start after the AutoComplete. |
NewText | Text that will be put in the control after the AutoComplete. |
See Also