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| Name | Type | Description |
|---|---|---|
| className | STRING | Name of class. |
| color | LONGINT | RGB color value. |
Changes the fill foreground color setting of the class named className.
ColorIndexToRGB(24,cRed,cGrn,cBlu);
SetClFillFore('Grassy Cover',cRed,cGrn,cBlu);Availability: from VectorWorks8.0