Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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()));
}