Skip to content

Latest commit

 

History

History
45 lines (35 loc) · 988 Bytes

File metadata and controls

45 lines (35 loc) · 988 Bytes

GetTexBitRepVert

Description

Function GetTexBitRepVert returns whether the referenced texture bitmap is set to repeat vertically.

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

Parameters

Name Type Description
textureBitmap HANDLE Handle to texture bitmap.

Remarks

Returns TRUE if this texture bitmap repeats vertically.

Examples

resultOK := GetTexBitRepVert(textureBitmap);
import vs

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

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

Version

Availability: from VectorWorks8.0

Category