|
Sets the value of a field. |
|
|
void SetFieldVal ( enum eSInvceFld eFieldID, VARIANT vFieldValue ) |
|
|
Parameters | eFieldID | [in] Identifier of the field, e.g. sinfSysNum (C++) or eSInvceFld.sinfSysNum (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 remark to 'Remark via SDK'
pSInvce->SetFieldVal (sinfRemark, "Remark via SDK");
|
|
|
C# |
|
// Set the value of the remark to 'Remark via SDK'
oSInvce.SetFieldVal (eSInvceFld.sinfRemark, "Remark via SDK");
|
|
|
VBS |
|
' Set the value of the remark to 'Remark via SDK'
Call oSInvce.SetFieldVal(oSInvce.GetFieldID("Remark"), "Remark via SDK")
|
|
|
VB.NET |
|
' Set the value of the remark to 'Remark via SDK'
oSInvce.SetFieldVal(eSInvceFld.sinfRemark, "Remark via SDK")
|
|