Locat::SetFieldVal (Interface: Locat)
 
Sets the value of a field.
 
void SetFieldVal (
    enum eLocatFld eFieldID,
    VARIANT vFieldValue
)
 
Parameters
eFieldID
[in] Identifier of the field, e.g. locfSysNum (C++) or eLocatFld.locfSysNum (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
CreateLocat
GetFieldVal
GetFieldStr
GetFieldID
 
Samples
 
C++
 
// Set the value of the description to 'Location A'
pLocat->SetFieldVal (locfDescription, "Location A");

C#
 
// Set the value of the description to 'Location A'
oLocat.SetFieldVal (eLocatFld.locfDescription, "Location A");

VBS
 
' Set the value of the description to 'Location A'
Call oLocat.SetFieldVal(oLocat.GetFieldID("Description"), "Location A")

VB.NET
 
' Set the value of the description to 'Location A'
oLocat.SetFieldVal(eLocatFld.locfDescription, "Location A")