Sequenced

<< Click to Display Table of Contents >>

Navigation:  Apollo VCL Components > Apollo VCL Component Reference > TApolloTable > TApolloTable Properties >

Sequenced

Declaration

property Sequenced: Boolean;

Description

If True (default), the vertical scroll bars in attached TDBGrid controls will be truly positional and proportional. If False, the standard three-position scroll bar is used.

 

Important Note: Sequenced does not support Clipper NTX indexes. Only FoxPro and SIx indexes work.

 

By default the full physical record count of the table (as returned by RecCount) is used in the calculation for the thumbnail position. To adjust this for more accuracy when dealing with deleted records, conditional indexes, queries, and scopes, use the SequencedCount property.

Delphi Example

ApTbl.Sequenced := True; // Enable positional scrollbar in TDBGrid

C++Builder Example

ApTbl->Sequenced = TRUE; // Enable positional scrollbar in TDBGrid

See Also

SequencedCount