FMX.Grid.TGridModel.GetValue
Delphi
function GetValue(const Col, Row: Integer; const InvalidateCache: Boolean): TValue;
C++
System::Rtti::TValue __fastcall GetValue(const int Col, const int Row, const bool InvalidateCache);
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| function | public | FMX.Grid.pas FMX.Grid.hpp |
FMX.Grid | TGridModel |
Description
Returns the value of the cell located at the specified column number and row number.
If InvalidateCache is True, the value is taken directly from the data source, overriding the internal cache.
If InvalidateCache is False, the value is taken from the internal cache if available, or from the data source otherwise.