Gets/sets maximum number of available undo steps (levels).

Namespace: Aurigma.GraphicsMill
Assembly:   Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)

Syntax

Visual Basic (Declaration)
Public Overridable Property MaxUndoStepCount As Integer
C#
public virtual int MaxUndoStepCount { get; set; }
Visual C++
public:
virtual property int MaxUndoStepCount {
	int get ();
	void set (int value);
}

Property Value

Maximum number of available undo steps (levels).

Remarks

Graphics Mill for .NET has internal bitmap changes stack. This property return maximum depth of this stack. Default value is 10.

Note: It is not recommended to specify too large values for this property until it is necessary indeed. Each stored bitmap state consumes a number of system resources (file handles, disk space), that's why if you specify large value and user make a big number of actions, it will take too much resources.

See Also