FMX.Grid.TGridModel.OnSetValue
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.