DictTable.deleteActionCnt Method

Retrieves the number of delete actions for the table.

Syntax

public int deleteActionCnt()

Run On

Called

Return Value

Type: int
The number of delete actions for the table.

Examples

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

See Also

Reference

DictTable Class