Type: String
Availability: Read or write at run time only
The text property of the JadeTableCell class contains the text of the cell referenced by this object. For a description of this property, see the
The code fragment in the following example shows the use of the text property.
table1.accessCell(1, 2).text := "Company";
The code fragment in the following example uses concatenation with the Tab character to store text in cells to the right of the specified cell.
// Set up column headings table1.accessCell(1, 1).text := "Name" & Tab & "Address" & Tab & "Phone";