DictTable.indexCnt Method

Returns the number of indexes for the table.

Syntax

public int indexCnt()

Run On

Called

Return Value

Type: int
The number of indexes for the table.

Examples

The following example shows the retrieval of the number of indexes for a table.

DictTable dt; 
 
dt = new DictTable(tablenum(CustTable)); 
if (dt) 
{ 
    print (strfmt("The table has %1 indexes.", dt.indexCnt())); 
}

See Also

Reference

DictTable Class