Skip to content

Latest commit

 

History

History
43 lines (33 loc) · 1.11 KB

File metadata and controls

43 lines (33 loc) · 1.11 KB

GetWallHoleTexturePart

Description

Gets 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.

FUNCTION GetWallHoleTexturePart(obj : HANDLE): INTEGER;
def vs.GetWallHoleTexturePart(obj):
    return INTEGER

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.

Examples

resultN := GetWallHoleTexturePart(obj);
import vs

# Gets 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

resultN = vs.GetWallHoleTexturePart(obj)
vs.Message('GetWallHoleTexturePart returned: ' + str(resultN))

See Also

VS Functions: SetWallHoleTexturePart

Version

Availability: from Vectorworks 2010

Category