Spread Windows Forms 15.0
FarPoint.Win.Chart Assembly / FarPoint.Win.Chart Namespace / UndoRedoManager Class / ActionPerforming Event


In This Topic
    ActionPerforming Event
    In This Topic
    Occurs when the undo or redo action is performing, users can cancel this action. Actions are cancelled are not added to the undo list.
    Syntax
    'Declaration
     
    
    Public Event ActionPerforming As UndoRedoCancelEventHandler
    'Usage
     
    
    Dim instance As UndoRedoManager
    Dim handler As UndoRedoCancelEventHandler
     
    AddHandler instance.ActionPerforming, handler
    public event UndoRedoCancelEventHandler ActionPerforming
    Event Data

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

    PropertyDescription
    Gets the undo action which has just completed.  
    (Inherited from System.ComponentModel.CancelEventArgs)
    See Also