Skip to content

Latest commit

 

History

History
45 lines (35 loc) · 824 Bytes

File metadata and controls

45 lines (35 loc) · 824 Bytes

SetClTextureR

Description

Procedure SetClTextureR sets the right side wall texture of the specified class.

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

Parameters

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

Remarks

Sets the wall right texture of the class named className.

Examples

SetClTextureR('Wall', 1);
import vs

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

vs.SetClTextureR(className, textureRef)

Version

Availability: from VectorWorks8.0

Category