Skip to content

Latest commit

 

History

History
48 lines (39 loc) · 989 Bytes

File metadata and controls

48 lines (39 loc) · 989 Bytes

FFillColorByClass

Description

Function FFillColorByClass returns whether the global attributes are set to use the fill colors of the default class.

FUNCTION FFillColorByClass : BOOLEAN;
def vs.FFillColorByClass():
    return BOOLEAN

Remarks

Returns whether the global attributes are set to use the fill colors of the default class. [sd 8/19/98]

Examples

VectorScript

useClassFillCol:=FFillColorByClass;

Python

useClassFillCol = vs.FFillColorByClass()
resultOK := FFillColorByClass;
import vs

# Function FFillColorByClass returns whether the global attributes are set to
# use the fill colors of the default class.
ok = vs.FFillColorByClass()
if ok:
    vs.Message('FFillColorByClass succeeded')
else:
    vs.Message('FFillColorByClass failed')

Version

Availability: from VectorWorks8.0

Category