This documentation is archived and is not being maintained.
DictTable.deleteActionCnt Method [AX 2012]
Retrieves the number of delete actions for the table.
public int deleteActionCnt()
Run On
Called
Return Value
Type:
int
The number of delete actions for the table.
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()));
}