Skip to content

Latest commit

 

History

History
46 lines (36 loc) · 1.2 KB

File metadata and controls

46 lines (36 loc) · 1.2 KB

SetWallHoleTexturePart

Description

Sets the wall texture part of an object in the wall hole group of a symbol definition or plug-in object. This is the wall texture part given to faces of the wall that are created by cutting a hole in the wall with the object.

PROCEDURE SetWallHoleTexturePart(
				obj  : HANDLE;
				part : INTEGER);
def vs.SetWallHoleTexturePart(obj, part):
    return None

Parameters

Name Type Description
obj HANDLE The handle to the cutting object in the wall hole group of a symbol definition or plug-in object.
part INTEGER The wall texture part.

Examples

SetWallHoleTexturePart(obj, 1);
import vs

# Sets the wall texture part of an object in the wall hole group of a symbol
# definition or plug-in object.
obj = vs.FSActLayer()  # handle to the first selected object on the active layer
part = 1

vs.SetWallHoleTexturePart(obj, part)

See Also

VS Functions: GetWallHoleTexturePart

Version

Availability: from Vectorworks 2010

Category