Skip to content

Latest commit

 

History

History
47 lines (37 loc) · 978 Bytes

File metadata and controls

47 lines (37 loc) · 978 Bytes

SetClTextStyleRef

Description

Function SetClTextStyleRef sets the text style of the specified class. The integer style is the internal index of the text style.

PROCEDURE SetClTextStyleRef(
				className    : STRING;
				textStyleRef : LONGINT);
def vs.SetClTextStyleRef(className, textStyleRef):
    return None

Parameters

Name Type Description
className STRING Name of class
textStyleRef LONGINT text style reference id

Examples

SetClTextStyleRef('Wall', 1);
import vs

# Function SetClTextStyleRef sets the text style of the specified class.
className = 'None'
textStyleRef = 0

vs.SetClTextStyleRef(className, textStyleRef)

See Also

VS Functions: SetClUseTextStyle | GetClUseTextStyle | GetClTextStyleRef

Version

Availability: from Vectorworks 2015

Category