Indicates if last reverted action can be redone.
Namespace:
Aurigma.GraphicsMill
Assembly:
Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)
Public Overridable ReadOnly Property CanRedo As Boolean
public virtual bool CanRedo { get; }
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.