FMX.Grid.TGridModel.DoSetValue

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DoSetValue(Col, Row: Integer; const Value: TValue); virtual;

C++

virtual void __fastcall DoSetValue(int Col, int Row, const System::Rtti::TValue &Value);

Properties

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

Description

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

DoSetValue calls OnSetValue event handler if this event handler is defined.

Col specifies the column.

Row specifies the row.

See Also