Skip to content

Latest commit

 

History

History
38 lines (30 loc) · 772 Bytes

File metadata and controls

38 lines (30 loc) · 772 Bytes

RemoveGradientSegment

Description

Removes the specified segment from the specified gradient.

PROCEDURE RemoveGradientSegment(
				gradient     : HANDLE;
				segmentIndex : INTEGER);
def vs.RemoveGradientSegment(gradient, segmentIndex):
    return None

Parameters

Name Type Description
gradient HANDLE Gradient from which to remove a segment.
segmentIndex INTEGER Index of segment to be removed.

Examples

VectorScript

RemoveGradientSegment (gradientHandle, 4);
{ removes the segment with index 4 }

Python

Version

Availability: from VectorWorks10.0

Category