Function GetTexBitRepVert returns whether the referenced texture bitmap is set to repeat vertically.
FUNCTION GetTexBitRepVert(textureBitmap : HANDLE): BOOLEAN;def vs.GetTexBitRepVert(textureBitmap):
return BOOLEAN| Name | Type | Description |
|---|---|---|
| textureBitmap | HANDLE | Handle to texture bitmap. |
Returns TRUE if this texture bitmap repeats vertically.
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')Availability: from VectorWorks8.0