Search
Arrow.EndUndoRecord Method
See Also
 



( a feature of FlowChartX Pro edition)

Stop recording the changes made to properties of this arrow and add an undo record to the undo/redo history.

 Syntax

VB6  Copy Code

Public Sub EndUndoRecord ()

C++  Copy Code

public:
void EndUndoRecord ()

 Remarks

Records in the undo-history a group of property modifications enclosed by this method and a previous call to BeginUndoRecord. You should always match EndUndoRecord with exactly one call to BeginUndoRecord, nesting of Begin/End pairs is not supported. You should avoid deleting attached items while recording is active. Adding and deleting diagram elements is automatically recorded in the undo-history.

 See Also