Frequently Asked Component Specific Questions

Options

Display all FAQ items

Search FAQ items:


Displaying items 1 to 1 of 1, page 1 of 1

<< previous next >>

TAdvStringGrid
Using NarrowDown but perform narrow down only for cells matching the search text from first character.

To do this, set grid.NarrowDownFromStart = true.

Example:

  grid.NarrowDownFromStart := true;
  grid.NarrowDown(‘M’);
Whereas with the default setting of NarrowDownFromStart = false, this returns all cells that contain the character ‘M’

  grid.NarrowDownFromStart := false;
  grid.NarrowDown(‘M’);