Book::Insert (Interface: Book)
 
Inserts a Book card.
 
void Insert (
    enum eInsertMode eInsertMode
)
 
Parameters
eInsertMode
[in] A value of the 'eInsertMode' enumeration.
 
See Also
CreateBook
Init
 
Samples
 
C++
 
// Insert a new record using the dialog, initially filled with the default values
pBook->Init ();
pBook->Insert (imDialog);

C#
 
// Insert a new record using the dialog, initially filled with the default values
oBook.Init ();
oBook.Insert (eInsertMode.imDialog);

VBS
 
' Insert a new record using the dialog, initially filled with the default values
Call oBook.Init()
Call oBook.Insert(imDialog)

VB.NET
 
' Insert a new record using the dialog, initially filled with the default values
oBook.Init()
oBook.Insert(eInsertMode.imDialog)