FMX.Grid.TGridModel.TCellObjectInfo

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

    TCellObjectInfo = record
      Column: TColumn;
      CellObject: TObject;
    end;

C++

struct DECLSPEC_DRECORD TCellObjectInfo
{
public:
    TColumn* Column;
    System::TObject* CellObject;
};

Properties

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

Description

Represents the object that represents a cell in the presentation, and the column where that cell is.

See Also