DictTable.label Method
Returns the label text for the table.
Syntax
public str label()
Run On
Called
Return Value
Type: str
The label text for the table; an empty string if there is no label text for the table.
Examples
The following example shows the retrieval of the label text for a table.
DictTable dt;
dt = new DictTable(tablenum(CustTable));
if (dt)
{
print(strfmt("Label: %1", dt.label()));
}