Go

<< Click to Display Table of Contents >>

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

Go

Declaration

procedure Go( lRecNum: LongInt );

Description

Goes to a physical record that occupies the nth position in the table. Go ignores filters, scopes, and SetDeleted status.

Parameters

lRecNum: The record number to go to. This is the physical location of the record in the table. An active order (i.e., index) has no effect on Go.

If an order is active, the key pointer within that order is synchronized to the new record position.

Delphi Example

// Move to record 20

ApTbl.Go( 20 );

C++Builder Example

// Move to record 20

ApTbl->Go( 20 );

See Also

GoBottom, GoTop, RecNo