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 BOOLEANReturns whether the global attributes are set to use the fill colors of the default class. [sd 8/19/98]
useClassFillCol:=FFillColorByClass;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')Availability: from VectorWorks8.0