ComponentOne Input Library for WPF
C1.WPF.Input Namespace / C1TextEditableContentControl Class / TextEdited Event

In This Topic
    TextEdited Event
    In This Topic
    Event fired to do when the text is edited in the EditableTextBox.
    Syntax
    '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.

    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