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

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

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

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