ComponentOne FinancialChart for WPF
C1.WPF 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)
    'Usage
     
    
    Dim instance As C1TextEditableContentControl
    Dim handler As EventHandler(Of TextEditedEventArgs)
     
    AddHandler instance.TextEdited, handler
    public event EventHandler<TextEditedEventArgs> TextEdited
    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