FMX.Grid.TCellReturnAction

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TCellReturnAction = (None, GotoNextRow, GotoNextColumn);

C++

enum class DECLSPEC_DENUM TCellReturnAction : unsigned char { None, GotoNextRow, GotoNextColumn };

Properties

Type Visibility Source Unit Parent
enum public
FMX.Grid.pas
FMX.Grid.hpp
FMX.Grid FMX.Grid

Description

Action that can be taken after a user presses the ENTER key on the cell editor of a grid.

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