|
Sets the value of a field. |
|
|
void SetFieldVal ( enum eAnaPropFld eFieldID, VARIANT vFieldValue ) |
|
|
Parameters | eFieldID | [in] Identifier of the field, e.g. anhfSysNum (C++) or eAnaPropFld.anhfSysNum (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 |
|
|
|
Samples |
|
|
C++ |
|
// Set the value of the description to 'Description via SDK'
pAnaProp->SetFieldVal (anhfDescription, "Description via SDK");
|
|
|
C# |
|
// Set the value of the description to 'Description via SDK'
oAnaProp.SetFieldVal (eAnaPropFld.anhfDescription, "Description via SDK");
|
|
|
VBS |
|
' Set the value of the description to 'Description via SDK'
Call oAnaProp.SetFieldVal(oAnaProp.GetFieldID("Description"), "Description via SDK")
|
|
|
VB.NET |
|
' Set the value of the description to 'Description via SDK'
oAnaProp.SetFieldVal(eAnaPropFld.anhfDescription, "Description via SDK")
|
|