Skip to content

Latest commit

 

History

History
48 lines (39 loc) · 910 Bytes

File metadata and controls

48 lines (39 loc) · 910 Bytes

FLWByClass

Description

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 BOOLEAN

Remarks

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

Examples

VectorScript

useClassLWidth:=FLWByClass;

Python

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')

Version

Availability: from VectorWorks8.0

Category