Function FLWByClass returns whether the global attributes are set to use the line weight of the default class.
FUNCTION FLWByClass : BOOLEAN;def vs.FLWByClass():
return BOOLEANReturns whether the global attributes are set to use the line weight of the default class. [sd 8/19/98]
useClassLWidth:=FLWByClass;useClassLWidth = vs.FLWByClass()resultOK := FLWByClass;import vs
# Function FLWByClass returns whether the global attributes are set to use
# the line weight of the default class.
ok = vs.FLWByClass()
if ok:
vs.Message('FLWByClass succeeded')
else:
vs.Message('FLWByClass failed')Availability: from VectorWorks8.0