GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoObject Class / OnBoundsChanged Method
A RectangleF in document coordinates holding the previous bounds.
In This Topic
    OnBoundsChanged Method (GoObject)
    In This Topic
    Called after this object's bounds has changed.
    Syntax
    protected virtual void OnBoundsChanged( 
       RectangleF old
    )

    Parameters

    old
    A RectangleF in document coordinates holding the previous bounds.
    Remarks
    By default this method does nothing. This method is called as part of the Bounds setter, after the property value has been saved. Unlike GoDocument.Changed events, this method will be called even when this object is not part of a document, or when SuspendsUpdates is true. However, this method is not called when the bounds are changed due to a call to ComputeBounds, nor upon an undo or a redo of a change in bounds.
    See Also