Search
DecorationLine.BeginUndoRecord Method
See Also
 



( a feature of FlowChartX Pro edition)

Start recording the changes made to properties of this line.

 Syntax

VB6  Copy Code

Public Sub BeginUndoRecord( _
    ByVal inclConnected As Boolean _
)

C++  Copy Code

public:
void BeginUndoRecord (
    bool inclConnected
)

 Parameters

inclConnected
Indicates whether to also save undo & redo information for connected objects.

 Remarks

FlowChartX automatically records users actions on the flowchart document to enable later undo and redo of any modifications. Some programmatic actions are recorded too - such as creation or deletion of objects. However, programmatic change of most of the object properties will not be recorded automatically in the undo-history. The BeginUndoRecord and EndUndoRecord pair of methods can be used to record a group of modifications to an object, allowing their undo and redo as a single atomic operation.

 See Also