Vcl.Graphics.TBitmap.HandleType

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property HandleType: TBitmapHandleType read GetHandleType write SetHandleType;

C++

__property TBitmapHandleType HandleType = {read=GetHandleType, write=SetHandleType, nodefault};

Properties

Type Visibility Source Unit Parent
property public
Vcl.Graphics.pas
Vcl.Graphics.hpp
Vcl.Graphics TBitmap

Description

Indicates whether the bitmap is a device-dependent bitmap, or a device-independent bitmap.

HandleType is used to find or modify the type of the bitmap. Device-dependent bitmaps (DDBs) may be faster to draw on the screen, but may be stored in memory in a device-specific format. Device-independent bitmaps (DIBs) are stored in memory in a standard format supported by all devices (including printers).

See Also