FBook::Delete (Interface: FBook)
 
Deletes a Financial Book 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
CreateFBook
SeekBySysNum
 
Samples
 
C++
 
// Delete the last inserted record
if (pFBook->SeekBySysNum (smLast, 0))
    pFBook->Delete (dmFullReport);

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

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

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