GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoUndoManager Class / Documents Property
In This Topic
    Documents Property
    In This Topic
    Gets a list of documents for which this UndoManager is recording undo/redo information.
    Syntax
    public virtual IEnumerable<GoDocument> Documents {get;}
    Remarks
    You can manipulate this list explicitly by calling AddDocument and RemoveDocument. Setting GoDocument.UndoManager automatically calls these methods. Undo and Redo use this list to call GoDocument.RaiseChanged with notices about starting and ending undo and redo actions, and about starting/finishing/aborting transactions.
    See Also