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.
Indicates whether the table is a map.
Syntax
public boolean isMap()
Run On
Called
Return Value
Type: boolean
true if the table is a map; otherwise, false.
Examples
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()));
}
See Also
DictTable.isDefaultData Method