Custm::SetFieldVal (Interface: Custm)
 
Sets the value of a field.
 
void SetFieldVal (
    enum eCustmFld eFieldID,
    VARIANT vFieldValue
)
 
Parameters
eFieldID
[in] Identifier of the field, e.g. cusfSysNum (C++) or eCustmFld.cusfSysNum (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
CreateCustm
GetFieldVal
GetFieldStr
GetFieldID
 
Samples
 
C++
 
// Set the value of the information to 'Info via SDK'
pCustm->SetFieldVal (cusfInfo, "Info via SDK");

C#
 
// Set the value of the information to 'Info via SDK'
oCustm.SetFieldVal (eCustmFld.cusfInfo, "Info via SDK");

VBS
 
' Set the value of the information to 'Info via SDK'
Call oCustm.SetFieldVal(oCustm.GetFieldID("Info"), "Info via SDK")

VB.NET
 
' Set the value of the information to 'Info via SDK'
oCustm.SetFieldVal(eCustmFld.cusfInfo, "Info via SDK")