Skip to content

Latest commit

 

History

History
49 lines (42 loc) · 1.74 KB

File metadata and controls

49 lines (42 loc) · 1.74 KB

GetGradientSliderData

Description

Gets the spot position, midpoint position and color of the specified gradient slider segment.

PROCEDURE GetGradientSliderData(
				dialogID             : LONGINT;
				componentID          : LONGINT;
				segmentIndex         : INTEGER;
				VAR spotPosition     : REAL;
				VAR midpointPosition : REAL;
				VAR red              : LONGINT;
				VAR green            : LONGINT;
				VAR blue             : LONGINT);
def vs.GetGradientSliderData(dialogID, componentID, segmentIndex):
    return (spotPosition, midpointPosition, red, green, blue)

Parameters

Name Type Description
dialogID LONGINT Index to the dialog layout that contains the gradient slider component.
componentID LONGINT Index to a specific gradient slider component.
segmentIndex INTEGER Segment from which to get the data.
spotPosition REAL Position of the segment's color marker relative to left-most point of the slider.
midpointPosition REAL Position of the segment's midpoint marker relative to color marker immediately to left.
red LONGINT Red component of the color spot's color.
green LONGINT Green component of the color spot's color.
blue LONGINT Blue component of the color spot's color.

Examples

VectorScript

GetGradientSliderData(dialogID, componentID, 4, 0.7, 0.3, 255, 255, 255);

Python

vs.GetGradientSliderData(dialogID, componentID, 4)

Version

Availability: from VectorWorks10.0

Category