Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Returns the number of instance methods for the table.
Syntax
public int objectMethodCnt([TableScope tableScope])
Run On
Called
Parameters
- tableScope
Type: TableScope Enumeration
Return Value
Type: int
The number of instance methods for the table.
Examples
The following example shows the retrieval of the number of instance methods for a table.
DictTable dt;
dt = new DictTable(tablenum(CustTable));
if (dt)
{
print (strfmt("The table has %1 instance methods.", dt.objectMethodCnt()));
}