This documentation is archived and is not being maintained.
DictTable.isMap Method [AX 2012]
Indicates whether the table is a map.
Run On
Called
Return Value
Type:
boolean
true if the table is a map; otherwise, false.
The following example shows the retrieval of a value that indicates whether the table is a map.
DictTable dt;
dt = new DictTable(tablenum(AddressMap));
if (dt)
{
print(strfmt("Map: %1", dt.isMap()));
}