Search
FlowChart.RecordCustomAction Method
See Also
 



( a feature of FlowChartX Pro edition)

Adds a custom record to the FlowChartX undo/redo queue.

 Syntax

VB6  Copy Code

Public Sub RecordCustomAction( _
    ByVal ID As Long _
)

C++  Copy Code

public:
void RecordCustomAction (
    int ID
)

 Parameters

ID
An identifier associated with the custom record.

 Remarks

Adds a custom record to the FlowChartX command history. UndoDepth must be greater than zero for this method to succeed. The record ID identifier is passed later to ActionRedone or ActionUndone event handlers, allowing applications to perform the appropriate operations to redo or undo the custom action.

 See Also