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