DictTable.Staticmethodcnt 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 static methods for the table.
public:
virtual int Staticmethodcnt();
public virtual int Staticmethodcnt ();
abstract member Staticmethodcnt : unit -> int
override this.Staticmethodcnt : unit -> int
Public Overridable Function Staticmethodcnt () As Integer
Returns
The number of static methods for the table.
Remarks
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()));
}