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

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

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

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