Frequently Asked Component Specific Questions
Options |
Display all FAQ items |
Displaying items 1 to 1 of 1, page 1 of 1
<< previous next >>
TAdvStringGrid
How to disable scrolling with mousewheel and arrow keys
How to disable scrolling with mousewheel and arrow keys
Disable the mousewheel with:
BinningGrid.EnableWheel := false;
procedure TForm1.BinningGridTopLeftChanged(Sender: TObject); begin BinningGrid.TopRow := 0; end;