MaCrd::SetFieldVal (Interface: MaCrd)
 
Sets the value of a field.
 
void SetFieldVal (
    enum eMaCrdFld eFieldID,
    VARIANT vFieldValue
)
 
Parameters
eFieldID
[in] Identifier of the field, e.g. mcrfSysNum (C++) or eMaCrdFld.mcrfSysNum (C# / VB.NET).
 
Remark: In VBS, this field identifier enumerations cannot be used! You should use GetFieldID to get a valid field identifier.
vFieldValue
[in] A VARIANT containing the value you want to give the requested field.
 
See Also
CreateMaCrd
GetFieldVal
GetFieldStr
GetFieldID
 
Samples
 
C++
 
// Set the value of the remark to 'Remark via SDK'
pMaCrd->SetFieldVal (mcrfRemark, "Remark via SDK");

C#
 
// Set the value of the remark to 'Remark via SDK'
oMaCrd.SetFieldVal (eMaCrdFld.mcrfRemark, "Remark via SDK");

VBS
 
' Set the value of the remark to 'Remark via SDK'
Call oMaCrd.SetFieldVal(oMaCrd.GetFieldID("Remark"), "Remark via SDK")

VB.NET
 
' Set the value of the remark to 'Remark via SDK'
oMaCrd.SetFieldVal(eMaCrdFld.mcrfRemark, "Remark via SDK")