Frozen property

Applies to
TIB_CursorGrid

Declaration
Property Frozen : boolean;

Description
This property freezes the grid so that it does not respond to changes in the underlying dataset.

This can be useful if the user fetches all the rows and then wants to be able to double-click on any of the fetched rows and have that row re-fetched for editing without clearing the previously fetched batch of rows.

This could be accomplished by setting Frozen to true just after the last row is fetched. Frozen could be set to false just prior to another request to go to the last record in a selected dataset. This way the grid would always represent a complete sub-set of data. Then, using this sub-set the user can select and work with one record at a time by double-clicking on them in the grid.