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

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

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

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