Share via


DictTable.Deleteactioncnt Method

Definition

Retrieves the number of delete actions for the table.

public:
 virtual int Deleteactioncnt();
public virtual int Deleteactioncnt ();
abstract member Deleteactioncnt : unit -> int
override this.Deleteactioncnt : unit -> int
Public Overridable Function Deleteactioncnt () As Integer

Returns

The number of delete actions for the table.

Remarks

The following example shows the retrieval of the number of delete actions for the table.

DictTable dt; 
dt = new DictTable(tablenum(CustTable)); 
if (dt) 
{ 
    print (strfmt("The table has %1 delete actions.", dt.deleteActionCnt())); 
}

Applies to