Skip to content

Latest commit

 

History

History
42 lines (32 loc) · 801 Bytes

File metadata and controls

42 lines (32 loc) · 801 Bytes

SetClFillFore

Description

Sets the fill foreground color of the specified class. The color must be specified using the RGB components of the desired color. RGB values are in the range of 0~65535.

PROCEDURE SetClFillFore(
				className : STRING;
				r,g,b     : LONGINT);
def vs.SetClFillFore(className, r,g,b):
    return None

Parameters

Name Type Description
className STRING Name of class.
color LONGINT RGB color value.

Remarks

Changes the fill foreground color setting of the class named className.

Examples

==== VectorScript ====

ColorIndexToRGB(24,cRed,cGrn,cBlu);
SetClFillFore('Grassy Cover',cRed,cGrn,cBlu);

==== Python ====

Version

Availability: from VectorWorks8.0

Category

  • Classes