FMX.MultiResBitmap.TCustomBitmapItem.IsEmpty

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property IsEmpty: Boolean read GetIsEmpty;

C++

__property bool IsEmpty = {read=GetIsEmpty, nodefault};

Properties

Type Visibility Source Unit Parent
property public
FMX.MultiresBitmap.pas
FMX.MultiResBitmap.hpp
FMX.MultiResBitmap TCustomBitmapItem

Description

Indicates that the Bitmap is empty.

IsEmpty indicates whether the Bitmap is nil.

The IsEmpty property provides the same result as a call to the IsEmpty method of the bitmap stored in the Bitmap property. But it is preferable to use the IsEmpty property to avoid referring to Bitmap, because any access to Bitmap is memory consuming. See also Dormant.

See Also