Spread Silverlight Documentation
Changed Event (UndoManager)


GrapeCity.Windows.SpreadSheet.UI Namespace > UndoManager Class : Changed Event
Occurs when an undo or redo action occurs.
Syntax
'Declaration
 
Public Event Changed As System.EventHandler(Of UndoRedoEventArgs)
'Usage
 
Dim instance As UndoManager
Dim handler As System.EventHandler(Of UndoRedoEventArgs)
 
AddHandler instance.Changed, handler
public event System.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