GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoDocument Class / SkipsUndoManager Property
In This Topic
    SkipsUndoManager Property (GoDocument)
    In This Topic
    Gets or sets whether the UndoManager is notified upon a document or document object change.
    Syntax
    [Browsable(false)]
    public bool SkipsUndoManager {get; set;}

    Property Value

    A value of true means the UndoManager's GoUndoManager.DocumentChanged method is not called. A value of false means that if there is an UndoManager, it is notified so that it can record changes for undo and redo purposes. The default value is false.
    Remarks
    You must be careful that any changes that occur while this property is true will not confuse the user when they perform Undo's and Redo's but the changes are not undone or redone. No Changed event is raised when this property is set.
    See Also