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