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

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

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

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