Spread Windows Forms 17
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet.UI Namespace / UIManager Class / StateChanged Event


In This Topic
    StateChanged Event (UIManager)
    In This Topic
    Occurs when the state of active element is changed.
    Syntax
    'Declaration
     
    
    Public Event StateChanged As EventHandler(Of StateEventArgs)
    'Usage
     
    
    Dim instance As UIManager
    Dim handler As EventHandler(Of StateEventArgs)
     
    AddHandler instance.StateChanged, handler
    public event EventHandler<StateEventArgs> StateChanged
    Event Data

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

    PropertyDescription
    (Inherited from System.ComponentModel.CancelEventArgs)
    Gets a boolean value indicating whether the state can be combined with previous state.  
    Gets a boolean value indicating whether the contextual state is changed.  
    Gets the StateType indicates the type of state change.  
    See Also