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

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

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

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