Share via


DictTable.Indexcnt Method

Definition

Returns the number of indexes for the table.

public:
 virtual int Indexcnt();
public virtual int Indexcnt ();
abstract member Indexcnt : unit -> int
override this.Indexcnt : unit -> int
Public Overridable Function Indexcnt () As Integer

Returns

The number of indexes for the table.

Remarks

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

Applies to