Vcl.Samples.Calendar.TCalendar.CellText

Aus RAD Studio API Documentation
Wechseln zu: Navigation, Suche

Delphi

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

C++

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

Eigenschaften

Typ Sichtbarkeit Quelle Unit Übergeordnet
property public
Vcl.Samples.Calendar.pas
Vcl.Samples.Calendar.hpp
Vcl.Samples.Calendar TCalendar

Beschreibung

Legt den Text einer angegebenen Position im Kalendergitter fest.

Die schreibgeschützte CellText-Eigenschaft legt den Text einer angegebenen Position im Kalendergitter fest.

Zum Beispiel:

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

Siehe auch