Skip to content

Latest commit

 

History

History
41 lines (33 loc) · 915 Bytes

File metadata and controls

41 lines (33 loc) · 915 Bytes

GetFillIAxisEndPoint

Description

Gets the I-axis end point of the fill.

Note: only works with 2D objects that have a gradient or image fill.

PROCEDURE GetFillIAxisEndPoint(
				objectHandle       : HANDLE;
				VAR xIAxisEndPoint : REAL;
				VAR yIAxisEndPoint : REAL);
def vs.GetFillIAxisEndPoint(objectHandle):
    return (xIAxisEndPoint, yIAxisEndPoint)

Parameters

Name Type Description
objectHandle HANDLE Handle to the object with fill.
xIAxisEndPoint REAL X coordinate of I-axis point.
yIAxisEndPoint REAL Y coordinate of I-axis point.

Examples

VectorScript

GetFillIAxisEndPoint(objectHandle, xIAxis, yIAxis);

Python

xIAxis, yIAxis = vs.GetFillIAxisEndPoint(vs.FSActLayer())

Version

Availability: from VectorWorks10.0

Category