Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 906 Bytes

File metadata and controls

34 lines (27 loc) · 906 Bytes

GetClPenBack

Description

Returns the pen background color setting of the specified class. The color is returned as the three RGB components of the color. RGB values are in the range of 0~65535.

PROCEDURE GetClPenBack(
				className   : STRING;
				VAR colorRV : LONGINT;
				VAR colorGV : LONGINT;
				VAR colorBV : LONGINT);
def vs.GetClPenBack(className):
    return (colorRV, colorGV, colorBV)

Parameters

Name Type Description
className STRING Name of class.
colorRV LONGINT Returns RGB color component (red).
colorGV LONGINT Returns RGB color component (green).
colorBV LONGINT Returns RGB color component (blue).

Remarks

Returns the pen background color setting of the class named className in parameters colorRV, colorGV, and colorBV.

Version

Availability: from VectorWorks8.0

Category