Skip to main content
All docs
V26.1
  • AutoSuggestEdit.TextChanged Event

    Occurs when the editor’s text has been changed due to edit value change, selecting any suggestion from the popup, or entering a custom text in editor’s text box.

    Namespace: DevExpress.Xpf.Editors

    Assembly: DevExpress.Xpf.Core.v26.1.dll

    NuGet Package: DevExpress.Wpf.Core

    Declaration

    public event EventHandler<AutoSuggestEditTextChangedEventArgs> TextChanged

    Event Data

    The TextChanged event's data class is AutoSuggestEditTextChangedEventArgs. The following properties provide information specific to this event:

    Property Description
    Reason Returns the reason of changing the editor’s text.
    Text Gets a new text displayed within the editor’s text box.

    Remarks

    Handle the TextChanged event to get the new text, and to get the reason for the text changing.

    Use the event arguments’ AutoSuggestEditTextChangedEventArgs.Text property to get the new text, entered in editor’s text box.

    To get the reason for the text changing, use the AutoSuggestEditTextChangedEventArgs.Reason property.

    See Also