Spplm::Delete (Interface: Spplm)
 
Deletes a Supplement card.
 
void Delete (
    enum eDeleteMode eDeleteMode
)
 
Parameters
eDeleteMode
[in] A value of the 'eDeleteMode' enumeration.
 
Remarks
After deleting a record, no further actions can be executed on the record, although the methods GetNext and GetPrevious are still valid.
 
See Also
CreateSpplm
SeekBySysNum
 
Samples
 
C++
 
// Delete the last inserted record
if (pSpplm->SeekBySysNum (smLast, 0))
    pSpplm->Delete (dmFullReport);

C#
 
// Delete the last inserted record
if (oSpplm.SeekBySysNum (eSeekMode.smLast, 0))
    oSpplm.Delete (eDeleteMode.dmFullReport);

VBS
 
' Delete the last inserted record
If oSpplm.SeekBySysNum(smLast, 0) Then
    Call oSpplm.Delete(dmFullReport)
End If

VB.NET
 
' Delete the last inserted record
If oSpplm.SeekBySysNum(eSeekMode.smLast, 0) Then
    oSpplm.Delete(eDeleteMode.dmFullReport)
End If