FMX.Grid.TGridModel.DoGetValue

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function DoGetValue(Col, Row: Integer): TValue; virtual;

C++

virtual System::Rtti::TValue __fastcall DoGetValue(int Col, int Row);

Properties

Type Visibility Source Unit Parent
function protected
FMX.Grid.pas
FMX.Grid.hpp
FMX.Grid TGridModel

Description

Warning: Subclasses of TGridModel may not call DoGetValue.

Is called when the grid, using this grid model, needs to retrieve a value from an external repository to use as the content of one of the cells in the grid.

DoGetValue calls OnGetValue event handler if this event handler is defined.

Col specifies the column.

Row specifies the row.

See Also