Share via


DictTable.Staticmethodcnt Method

Definition

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

Applies to