Skip to content

Latest commit

 

History

History
45 lines (35 loc) · 1003 Bytes

File metadata and controls

45 lines (35 loc) · 1003 Bytes

GetTexBitRepHoriz

Description

Function GetTexBitRepHoriz returns whether the referenced texture bitmap is set to repeat horizontally.

FUNCTION GetTexBitRepHoriz(textureBitmap : HANDLE): BOOLEAN;
def vs.GetTexBitRepHoriz(textureBitmap):
    return BOOLEAN

Parameters

Name Type Description
textureBitmap HANDLE Handle to texture bitmap.

Remarks

Returns TRUE if this texture bitmap repeats horizontally.

Examples

resultOK := GetTexBitRepHoriz(textureBitmap);
import vs

# Function GetTexBitRepHoriz returns whether the referenced texture bitmap is
# set to repeat horizontally.
textureBitmap = vs.FSActLayer()  # handle to the first selected object on the active layer

ok = vs.GetTexBitRepHoriz(textureBitmap)
if ok:
    vs.Message('GetTexBitRepHoriz succeeded')
else:
    vs.Message('GetTexBitRepHoriz failed')

Version

Availability: from VectorWorks8.0

Category