Data.Bind.ObjectScope.TBindSourceAdapter.Empty

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: property
Visibility: public
Source:
Data.Bind.ObjectScope.pas
Data.Bind.ObjectScope.hpp
Unit: Data.Bind.ObjectScope
Parent: TBindSourceAdapter

Delphi

property Empty: Boolean read GetEmpty;

C++

__property bool Empty = {read=GetEmpty, nodefault};

Description

Indicates if there are no data items in the source adapter.

Read Empty to determine if there are no data items in the source adapter. This property uses the getter method GetEmpty, that returns True if there are no data items in the scope adapter or False otherwise.

Note: The GetEmpty method uses the GetCount method that must be overridden by descendant classes.

See Also