Skip to content

Latest commit

 

History

History
47 lines (36 loc) · 1.15 KB

File metadata and controls

47 lines (36 loc) · 1.15 KB

EditTextureBitmap

Description

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

Parameters

Name Type Description
textureBitmap HANDLE Handle to texture bitmap.

Remarks

Brings up the Edit Texture Bitmap dialog for this texture bitmap. Returns true if texture bitmap was changed by the dialog.

Examples

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')

Version

EditTextureBitmap is obsolete as of VectorWorks9.0

Availability: from VectorWorks8.0

Category