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

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

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

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