Library Vcl NextSuite 6 NextVirtualGrid6 Reference Classes TNxVirtualCellSource6 OnGetRow

OnGetRow

Provides an opportunity to adjust currently drawing and/or measuring row.

pas
property OnGetRow: TNxRowEvent read FOnGetRow write FOnGetRow;

Example

pas
procedure TForm6.NxVirtualCellSource61GetRow(Sender: TObject; Index: Integer; Row: INxRow);
begin
  if Index = FIndicatedRow then Row.Height := 48;
end;

Sign in