ComponentOne Basic Library for WPF and Silverlight
TextEdited Event (C1TextEditableContentControl)


C1.Silverlight Namespace > C1TextEditableContentControl Class : TextEdited Event
Event fired to do when the text is edited in the EditableTextBox.
Syntax
'Declaration
 
Public Event TextEdited As System.EventHandler(Of TextEditedEventArgs)
'Usage
 
Dim instance As C1TextEditableContentControl
Dim handler As System.EventHandler(Of TextEditedEventArgs)
 
AddHandler instance.TextEdited, handler
public event System.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.

PropertyDescription
Cancel the input of the new text.  
Current selection start.  
Current text.  
Gets or sets the last key.  
Index where the selection will start after the AutoComplete.  
Text that will be put in the control after the AutoComplete.  
See Also