Skip to content

Latest commit

 

History

History
44 lines (34 loc) · 819 Bytes

File metadata and controls

44 lines (34 loc) · 819 Bytes

SetClTextureL

Description

Procedure SetClTextureL sets the left side wall texture of the specified class.

PROCEDURE SetClTextureL(
				className  : STRING;
				textureRef : LONGINT);
def vs.SetClTextureL(className, textureRef):
    return None

Parameters

Name Type Description
className STRING Class name.
textureRef LONGINT Texture reference index value.

Remarks

Sets the wall left texture of the class named className.

Examples

SetClTextureL('Wall', 1);
import vs

# Procedure SetClTextureL sets the left side wall texture of the specified class.
className = 'None'
textureRef = 1

vs.SetClTextureL(className, textureRef)

Version

Availability: from VectorWorks8.0

Category