Spread Windows Forms 15.0
GrapeCity.Win.PluginInputMan Assembly / GrapeCity.Win.Spread.InputMan.CellType Namespace / EditBase Class / TextChanging Event


In This Topic
    TextChanging Event (EditBase)
    In This Topic
    Occurs just before the Text property 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 that indicates whether the changing action is canceled.  
    Gets the value that indicates the result after the text is changed.  
    Remarks
    This event is raised before the Text property is changed.
    See Also