FMX.Grid.TGridModel.CellReturnAction

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property CellReturnAction: TCellReturnAction read FCellReturnAction write FCellReturnAction  default TCellReturnAction.None;

C++

__property TCellReturnAction CellReturnAction = {read=FCellReturnAction, write=FCellReturnAction, default=0};

Properties

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

Description

Action to take when a user presses the ENTER key on a cell editor.

Possible values are:

Value Description
GotoNextColumn Go to the next column.
GotoNextRow Go to the next row.
None Stay on the current cell.

See Also