| |
| Inserts a Production Document. |
| |
 |
void Insert ( enum eInsertMode eInsertMode ) |
|
| |
| Parameters | | eInsertMode | | [in] A value of the 'eInsertMode' enumeration. | | | | Remarks |
 | A document can only be inserted using the dialog (eInsertMode = imDialog or eInsertMode = imDialogFromData), other modes are not supported in this version. |
|
| |
| See Also |
|
|
|
| |
| Samples |
| |
 |
C++ |
| |
// Insert a new record using the dialog, initially filled with the default values
pProduct->Init ();
pProduct->Insert (imDialog);
|
|
 |
C# |
| |
// Insert a new record using the dialog, initially filled with the default values
oProduct.Init ();
oProduct.Insert (eInsertMode.imDialog);
|
|
 |
VBS |
| |
' Insert a new record using the dialog, initially filled with the default values
Call oProduct.Init()
Call oProduct.Insert(imDialog)
|
|
 |
VB.NET |
| |
' Insert a new record using the dialog, initially filled with the default values
oProduct.Init()
oProduct.Insert(eInsertMode.imDialog)
|
|