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

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

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

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