Gets start and axis end points of the fill.
Note: only works with 2D objects that have a gradient or image fill.
PROCEDURE GetFillPoints(
objectHandle : HANDLE;
VAR xOriginPoint : REAL;
VAR yOriginPoint : REAL;
VAR xIAxisEndPoint : REAL;
VAR yIAxisEndPoint : REAL;
VAR xJAxisEndPoint : REAL;
VAR yJAxisEndPoint : REAL);def vs.GetFillPoints(objectHandle):
return (xOriginPoint, yOriginPoint, xIAxisEndPoint, yIAxisEndPoint, xJAxisEndPoint, yJAxisEndPoint)| Name | Type | Description |
|---|---|---|
| objectHandle | HANDLE | Handle to the object with fill. |
| xOriginPoint | REAL | X coordinate of origin point. |
| yOriginPoint | REAL | Y coordinate of origin point. |
| xIAxisEndPoint | REAL | X coordinate of I-axis point. |
| yIAxisEndPoint | REAL | Y coordinate of I-axis point. |
| xJAxisEndPoint | REAL | X coordinate of J-axis point. |
| yJAxisEndPoint | REAL | Y coordinate of J-axis point. |
GetFillPoints(objectHandle);xOrigin, yOrigin, xIAxis, yIAxis, xJAxis, yJAxis = vs.GetFillPoints(vs.FSActLayer())Availability: from VectorWorks10.0