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
How to configure the grid so that a clipboard copy of a single cell value can be pasted at once to multiple cells

Initialize a default grid with:

begin
  advstringgrid1.Navigation.AllowClipboardAlways := true;
  advstringgrid1.Navigation.AllowClipboardShortCuts := true;
  advstringgrid1.Navigation.AllowSmartClipboard := true;
  advstringgrid1.Cells[1,1] := ''1'';
end;

Select cell 1,1 and select a different range of cells and paste to see it in use.
KB88