DictTable.Ismap Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Indicates whether the table is a map.
public:
virtual bool Ismap();
public virtual bool Ismap ();
abstract member Ismap : unit -> bool
override this.Ismap : unit -> bool
Public Overridable Function Ismap () As Boolean
Returns
true if the table is a map; otherwise, false.
Remarks
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()));
}