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.UndoActionList

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

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

Property Value

An array of the current undoable actions.

Remarks

This is an array of the actions currently on the undo 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 undone. That is, it is the top of the stack.

See Also

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