C# Класс Support.UI.UserAction

Class for managing the undo and redo stacks
Показать файл Открыть проект

Открытые методы

Метод Описание
ClearUndoRedoStacks ( ) : void
CreateActionList ( ) : List>
GetRedoAction ( ) : Action

Pops the redo action and pushes it to the redo stack. The action is not executed.

GetUndoAction ( ) : Action

Pops the undo action and pushes it to the redo stack. The action is not executed.

PushAction ( Action zAction, bool bPerformAction = false ) : void

Pushes an action onto the action stack

Описание методов

ClearUndoRedoStacks() публичный статический Метод

public static ClearUndoRedoStacks ( ) : void
Результат void

CreateActionList() публичный статический Метод

public static CreateActionList ( ) : List>
Результат List>

GetRedoAction() публичный статический Метод

Pops the redo action and pushes it to the redo stack. The action is not executed.
public static GetRedoAction ( ) : Action
Результат Action

GetUndoAction() публичный статический Метод

Pops the undo action and pushes it to the redo stack. The action is not executed.
public static GetUndoAction ( ) : Action
Результат Action

PushAction() публичный статический Метод

Pushes an action onto the action stack
public static PushAction ( Action zAction, bool bPerformAction = false ) : void
zAction Action The action to push
bPerformAction bool Flag indicating whether to execute the action after pushing it
Результат void