API:FMX.Grid.TStringGridModel.DoGetValue

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

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

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 TStringGridModel

Description

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.

FMX.Grid.TStringGridModel.DoGetValue inherits from FMX.Grid.TGridModel.DoGetValue. All content below this line refers to FMX.Grid.TGridModel.DoGetValue.

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