C# 클래스 Support.UI.UserAction

Class for managing the undo and redo stacks
파일 보기 프로젝트 열기: nhmkdev/cardmaker

공개 메소드들

메소드 설명
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