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

    Property Value

    A value of true means the GoUndoManager's GoUndoManager.DocumentChanged method is not called. A value of false means that if there is an GoUndoManager, 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. Setting this property does not raise any Changed events.
    See Also