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