This documentation is archived and is not being maintained.
DictTable.label Method [AX 2012]
Returns the label text for the table.
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.
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()));
}