Skip to content

Latest commit

 

History

History
39 lines (32 loc) · 1008 Bytes

File metadata and controls

39 lines (32 loc) · 1008 Bytes

GetGradientMidpointPosition

Description

Gets the midpoint position of the specified gradient segment.

PROCEDURE GetGradientMidpointPosition(
				gradient     : HANDLE;
				segmentIndex : INTEGER;
				VAR position : REAL);
def vs.GetGradientMidpointPosition(gradient, segmentIndex):
    return position

Parameters

Name Type Description
gradient HANDLE Gradient that contains the segment.
segmentIndex INTEGER Segment from which to get the data.
position REAL Position of the segment's midpoint relatvie to color spot immediately to left.

Examples

VectorScript

GetGradientMidpointPosition(gradientHandle, 4, midpointPosition);

Python

midpointPosition = vs.GetGradientMidpointPosition(gradientHandle, 4)

Version

Availability: from VectorWorks10.0

Category