FMX.Grid.TColumn.CellObject

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property CellObject: TObject read GetCellObject;

C++

__property System::TObject* CellObject = {read=GetCellObject};

Properties

Type Visibility Source Unit Parent
property protected
FMX.Grid.pas
FMX.Grid.hpp
FMX.Grid TColumn

Description

Returns the object used to draw the cells in the column.

The instance is created when you first access this property. The class of the object being created is retrieved by TStyledGrid.GetCellClass. The class of the object is determined by the native or style control that is registered using TPresentationProxyFactory. Usually this is control that supports the IDrawableCell interface.

CellObject can return nil.

See Also