Vcl.Samples.Calendar.TCalendar.CellText

提供: RAD Studio API Documentation
移動先: 案内検索

Delphi

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

C++

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

プロパティ

種類 可視性 ソース ユニット
property public
Vcl.Samples.Calendar.pas
Vcl.Samples.Calendar.hpp
Vcl.Samples.Calendar TCalendar

説明

カレンダーのグリッドにおいて、指定された位置のテキストを指定します。

CellText 読み取り専用プロパティは、カレンダーのグリッドにおいて、指定された位置のテキストを指定します。

次に例を示します。

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

関連項目