Vcl.Samples.Calendar.TCalendar.CellText
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]]));