API:Vcl.Samples.Calendar.TCalendar

From RAD Studio API Documentation
Jump to: navigation, search

Vcl.Grids.TCustomGridVcl.Controls.TCustomControlVcl.Controls.TWinControlVcl.Controls.TControlSystem.Classes.TComponentSystem.Classes.TPersistentSystem.TObjectTCalendar

Delphi

TCalendar = class(TCustomGrid)

C++

class PASCALIMPLEMENTATION TCalendar : public Vcl::Grids::TCustomGrid

Properties

Type Visibility Source Unit Parent
class public
Vcl.Samples.Calendar.pas
Vcl.Samples.Calendar.hpp
Vcl.Samples.Calendar Vcl.Samples.Calendar

Description

TCustomGrid is the base type for all components that present information in a two-dimensional grid.

Vcl.Samples.Calendar.TCalendar inherits from Vcl.Grids.TCustomGrid. All content below this line refers to Vcl.Grids.TCustomGrid.

TCustomGrid is the base type for all components that present information in a two-dimensional grid.

Use TCustomGrid as a base class when defining components that represent information in a tabular format. TCustomGrid introduces properties and methods to control the appearance and behavior of the grid, including responses to mouse actions and user editing.

Do not create instances of TCustomGrid. Instead, put a grid control in a form by instantiating a descendant of TCustomGrid. Use TDrawGrid to represent non-textual material in a tabular grid. For text, use a TStringGrid object. If the text represents field values from a dataset, use TDBGrid.

See Also