This documentation is for the old version. Go to the latest Graphics Mill docs

Bitmap.RedoStepCount Property

Returns number of available redo levels (i.e. how much time method Redo() can be called).

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

Syntax

Visual Basic
Public Overridable ReadOnly Property RedoStepCount As Integer
C#
public virtual int RedoStepCount { get; }

Property Value

Number of available redo steps (levels).

Remarks

Graphics Mill for .NET has internal bitmap changes stack. This property return the distance from the current stack position to the stack top.

If you try to pass to Redo(Int32) method value which is larger than this property, exception will be raised.

See Also

Reference