Skip to content

Latest commit

 

History

History
41 lines (33 loc) · 979 Bytes

File metadata and controls

41 lines (33 loc) · 979 Bytes

SetClassN

Description

Procedure SetClassN assigns a class to the referenced object.
If the third parameter 'descIntoGroup' is set to true all objects within the group will receive the same class assignment as the group,
otherwise only the group itself will be affected.

PROCEDURE SetClassN(
				h             : HANDLE;
				className     : STRING;
				descIntoGroup : BOOLEAN);
def vs.SetClassN(h, className, descIntoGroup):
    return None

Parameters

Name Type Description
h HANDLE Handle to object.
className STRING Name of class to assign to object.
descIntoGroup BOOLEAN Assign the same class to all objects inside the group.

Examples

{ select an object on drawing }
SetClassN(FSActLayer, 'Class Name-1', FALSE);

See Also

VS Functions: SetClass

Version

Availability: from Vectorworks 2018

Category