GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoStroke Class / DoResize Method
the GoView whose GoToolResizing is calling this method
the original Bounds of the object, but probably not useful for strokes
the PointF, in document coordinates, to which the resize handle is being dragged
The IGoHandle.IGoHandle.HandleID of the handle being dragged; for strokes this usually means that a value greater or equal to GoObject.LastHandle is actually the index of a point in the stroke, when one subtracts GoObject.LastHandle.
the value of GoToolResizing.GoToolResizing.MinimumSize, but probably not useful for strokes
the value of GoToolResizing.GoToolResizing.MaximumSize, but probably not useful for strokes
In This Topic
    DoResize Method (GoStroke)
    In This Topic
    When the resize handles are at each point of the stroke, the user's dragging of a resize handle should just change that point in the stroke.
    Syntax

    Parameters

    view
    the GoView whose GoToolResizing is calling this method
    origRect
    the original Bounds of the object, but probably not useful for strokes
    newPoint
    the PointF, in document coordinates, to which the resize handle is being dragged
    whichHandle
    The IGoHandle.IGoHandle.HandleID of the handle being dragged; for strokes this usually means that a value greater or equal to GoObject.LastHandle is actually the index of a point in the stroke, when one subtracts GoObject.LastHandle.
    evttype
    min
    the value of GoToolResizing.GoToolResizing.MinimumSize, but probably not useful for strokes
    max
    the value of GoToolResizing.GoToolResizing.MaximumSize, but probably not useful for strokes
    Remarks
    When ResizesRealtime is true, this method always calls SetPoint. Otherwise it only calls SetPoint when the evttype is GoInputState.Finish or GoInputState.Cancel.
    See Also