API ReferenceSandbox.Helpers
IUndoSystemclass
Interface for an undo/redo edit history system.
object→IUndoSystem
Methods2
Showing 2 methods
public virtual bool Redo()
Redoes the last undone change, or returns false if there was no undone change to redo.
Returns:
bool—public virtual bool Undo()
Undoes the last change made. Calling `Sandbox.Helpers.IUndoSystem.Redo` should now re-apply that change. Returns false if there was no change to undo.
Returns:
bool—No results match this filter.
Properties2
Showing 2 properties
public virtual System.Nullable`1<System.DateTime> Sandbox.Helpers.IUndoSystem.RedoTimestamp { get; set; }
Timestamp of the last undone change, or null if there's nothing to redo.
Returns:
Nullable<DateTime>—public virtual System.Nullable`1<System.DateTime> Sandbox.Helpers.IUndoSystem.UndoTimestamp { get; set; }
Timestamp of the last change made, or null if there's nothing to undo.
Returns:
Nullable<DateTime>—No results match this filter.