FMX.Grid.TGridModel.OnSetValue

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnSetValue: TOnSetValue read FOnSetValue write FOnSetValue;

C++

__property TOnSetValue OnSetValue = {read=FOnSetValue, write=FOnSetValue};

Properties

Type Visibility Source Unit Parent
event public
FMX.Grid.pas
FMX.Grid.hpp
FMX.Grid TGridModel

Description

Occurs when you need to pass a content of one of the cells in a grid, using this grid model, as a value to an external repository.

Write an OnSetValue event handler to take specific actions when you need to pass a content of one of the cells in a grid, using this grid model, as a value to be set in an external repository. OnSetValue event handler keeps the TCustomGrid.OnSetValue event handler. DoSetValue calls OnSetValue event handler.

See Also