Xbasic

UI_BITMAP_SAVE Function

Syntax

B UI_BITMAP_SAVE(C name)

Arguments

name

The name of a bitmap in memory. Character

Description

The UI_BITMAP_SAVE() method saves a named bitmap to a blob variable.

Example

dim b1 as B
ui_bitmap_create_from_screen("test", 0, 0, 4, 1)
b1 = ui_bitmap_save("test")
ui_bitmap_draw("george", 
ui_bitmap_load("george", b1)
%code%)
ui_dlg_box("","{image=george}")

Limitations

Desktop applications only.

See Also