Spread WPF 18
GrapeCity.Wpf.SpreadSheet.CellType.Editors Namespace / EditBase Class / TextChanging Event


In This Topic
    TextChanging Event (EditBase)
    In This Topic
    Occurs just before the text is changed in the control.
    Syntax
    'Declaration
     
    Public Event TextChanging As TextChangingEventHandler
    'Usage
     
    Dim instance As EditBase
    Dim handler As TextChangingEventHandler
     
    AddHandler instance.TextChanging, handler
    public event TextChangingEventHandler TextChanging
    Event Data

    The event handler receives an argument of type TextChangingEventArgs containing data related to this event. The following TextChangingEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets or sets the value indicating whether the changing action is cancelled.  
    Gets the value indicating the result after text is changed.  
    Remarks
    This event is raised before the Text property is changing.
    See Also