Function EditTextureBitmap opens the Edit Texture Bitmap dialog box to the referenced texture bitmap. The function returns TRUE if texture bitmap was modified.
FUNCTION EditTextureBitmap(textureBitmap : HANDLE): BOOLEAN;def vs.EditTextureBitmap(textureBitmap):
return BOOLEAN| Name | Type | Description |
|---|---|---|
| textureBitmap | HANDLE | Handle to texture bitmap. |
Brings up the Edit Texture Bitmap dialog for this texture bitmap. Returns true if texture bitmap was changed by the dialog.
resultOK := EditTextureBitmap(textureBitmap);import vs
# Function EditTextureBitmap opens the Edit Texture Bitmap dialog box to the
# referenced texture bitmap.
textureBitmap = vs.FSActLayer() # handle to the first selected object on the active layer
ok = vs.EditTextureBitmap(textureBitmap)
if ok:
vs.Message('EditTextureBitmap succeeded')
else:
vs.Message('EditTextureBitmap failed')EditTextureBitmap is obsolete as of VectorWorks9.0
Availability: from VectorWorks8.0