AnaProp::Insert (Interface: AnaProp)
 
Inserts an Analytical Accounting Proposal.
 
void Insert (
    enum eInsertMode eInsertMode
)
 
Parameters
eInsertMode
[in] A value of the 'eInsertMode' enumeration.
 
See Also
CreateAnaProp
Init
 
Samples
 
C++
 
// Insert a new record using the dialog, initially filled with the default values
pAnaProp->Init ();
pAnaProp->Insert (imDialog);

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

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

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