Skip to content

Latest commit

 

History

History
42 lines (32 loc) · 718 Bytes

File metadata and controls

42 lines (32 loc) · 718 Bytes

GetTextureSet

Description

Gets the texture set of an object.

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

Parameters

Name Type Description
obj HANDLE The object.

Examples

resultN := GetTextureSet(obj);
import vs

# Gets the texture set of an object.
obj = vs.FSActLayer()  # handle to the first selected object on the active layer

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

See Also

VS Functions: SetTextureSet

Version

Availability: from Vectorworks 2011

Category