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

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

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

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