DictTable.staticMethodCnt Method

Returns the number of static methods for the table.

Syntax

public int staticMethodCnt()

Run On

Called

Return Value

Type: int
The number of static methods for the table.

Examples

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

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

See Also

DictTable Class

DictTable.objectMethodCnt Method