Share via


DictTable.Ismap Method

Definition

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())); 
}

Applies to