Datasnap.DBClient.TAggregate.InUse

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property InUse: Boolean read FInUse write FInUse default False;

C++

__property bool InUse = {read=FInUse, write=FInUse, default=0};

Properties

Type Visibility Source Unit Parent
property public
Datasnap.DBClient.pas
Datasnap.DBClient.hpp
Datasnap.DBClient TAggregate

Description

Indicates whether the aggregate value is currently available.

Read InUse to determine whether the Value method returns a summarized value. When InUse is false, Value returns Null. When InUse is true, the aggregate is maintained so that it calculates the formula specified by Expression for the current set of records, including any edits to records in the current group.

See Also