Skip to content

Latest commit

 

History

History
43 lines (33 loc) · 821 Bytes

File metadata and controls

43 lines (33 loc) · 821 Bytes

RemoveCustomTexParts

Description

This routine removes all custom texture parts from the object.

PROCEDURE RemoveCustomTexParts(obj : HANDLE);
def vs.RemoveCustomTexParts(obj):
    return None

Parameters

Name Type Description
obj HANDLE The object from which to remove custom texture parts.

Examples

RemoveCustomTexParts(h);
AddCustomTexPart(100, ‘Stringers’);
AddCustomTexPart(200, ‘Treads’);
RemoveCustomTexParts(obj);
import vs

# This routine removes all custom texture parts from the object.
obj = vs.FSActLayer()  # handle to the first selected object on the active layer

vs.RemoveCustomTexParts(obj)

Version

Availability: from Vectorworks 2017

Category