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

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

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

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