GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoObject Class / CreateResizeHandle Method
In This Topic
    CreateResizeHandle Method (GoObject)
    In This Topic
    Create a resize handle for this object, given a handle ID.
    Syntax
    public virtual IGoHandle CreateResizeHandle( 
       int handleid
    )

    Parameters

    handleid

    Return Value

    This must return a GoObject that implements IGoHandle.
    Remarks
    By default this allocates a new GoHandle. GoSelection.GoSelection.CreateResizeHandle will call this method to allocate a handle which it will position. GoSelection.CreateResizeHandle also is responsible for specifying its other GoObject properties, including its GoShape.GoShape.Pen and GoShape.Brush if the handle is a GoShape. You may find it convenient to adjust the shape (GoHandle.Style) or size of a particular handle by overriding this method.
    See Also