Spread WPF 17
GrapeCity.Windows.SpreadSheet.UI Namespace / UndoManager Class / Changed Event


In This Topic
    Changed Event (UndoManager)
    In This Topic
    Occurs when an undo or redo action occurs.
    Syntax
    'Declaration
     
    Public Event Changed As EventHandler(Of UndoRedoEventArgs)
    'Usage
     
    Dim instance As UndoManager
    Dim handler As EventHandler(Of UndoRedoEventArgs)
     
    AddHandler instance.Changed, handler
    public event EventHandler<UndoRedoEventArgs> Changed
    Event Data

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

    PropertyDescription
    Gets the current action string.  
    Gets a value indicating whether it is a undo or redo action.  
    See Also