Vcl.Samples.Calendar.TCalendar.CellText

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property CellText[ACol, ARow: Integer]: string read GetCellText;

C++

__property System::UnicodeString CellText[int ACol][int ARow] = {read=GetCellText};

Properties

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

Description

Specifies the text of a given position in the calendar's grid.

The CellText read-only property specifies the text of a given position in the calendar's grid.

For example:

  ShowMessage(Format('The day at position [%d,%d] is %s.', [1, 3, Calendar1.CellText[1, 3]]));

See Also