NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

IUndoService.RedoActionList

Gets or sets an array of type IActionUnit that contains the redo actions that represent actions that have been undone.

[Visual Basic]
ReadOnly Property RedoActionList As IActionUnit ()
[C#]
IActionUnit[] RedoActionList {get;}
[C++]
IActionUnit* get_RedoActionList() = 0;
[JScript]
abstract function get RedoActionList() : IActionUnit[];

Property Value

An array of the current redoable actions.

Remarks

This is an array of the actions currently on the redo stack. These are for inspection only; invoking these actions may create unpredictable undo/redo behavior from the service. The item at index zero (if any) is the first action that would be redone. That is, it is the top of the stack.

See Also

IUndoService Interface | IUndoService Members | System.ComponentModel.Design Namespace