Interface IUndoCommand
Base interface for commands that are added to the undo buffer. A command is any operation that the undo buffer must be aware of and manage.
Namespace: Sdl.DesktopEditor.EditorApi
Assembly: Sdl.DesktopEditor.EditorApi.dll
Syntax
public interface IUndoCommand
Properties
IsSource
Used in SideBySide editor to determine which control to use
Declaration
bool IsSource { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Name
The name of the command that should be displayed to the user in drop down menus, etc.
Declaration
string Name { get; }
Property Value
Type | Description |
---|---|
System.String |