Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 1.15 KB

File metadata and controls

41 lines (32 loc) · 1.15 KB

SetGradientSpotPosition

Description

Sets the spot position of the specified gradient segment.

Note: you must use a variable, initialized to the segment index, to pass as a parameter. After the data has been set, this variable will contain the index of the segment, which may have changed because of the spot position specified.

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

Parameters

Name Type Description
gradient HANDLE Gradient that contains the segment.
segmentIndex INTEGER Segment for which to set the data.
position REAL Position of the segment's color spot relative to left-most point of the gradient.

Examples

VectorScript

SetGradientSpotPosition(gradientHandle, segmentIndex, 0.9);

Python

Version

Availability: from VectorWorks10.0

Category