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

Bitmap.CanRedo Property

Indicates if last reverted action can be redone.

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

Syntax

Visual Basic
Public Overridable ReadOnly Property CanRedo As Boolean
C#
public virtual bool CanRedo { get; }

Property Value

Value specifying if last reverted action can be redone.

Remarks

Graphics Mill for .NET has internal bitmap changes stack. If current position of this stack is a stack top, no actions to redo are available and this property returns false. If you try to call Redo() method, you will get an exception. If the current stack position is below of the stack top, this property returns true and you can call Redo() method to restore the bitmap state.

If undo/redo functionality is disabled (when UndoRedoEnabled is set to false), this property always returns false.

See Also

Reference