|
Sets the value of a field. |
|
|
void SetFieldVal ( enum eSupplFld eFieldID, VARIANT vFieldValue ) |
|
|
Parameters | eFieldID | [in] Identifier of the field, e.g. supfSysNum (C++) or eSupplFld.supfSysNum (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 cash discount to 2.0
pSuppl->SetFieldVal (supfFinDiscount, 2.0);
|
|
|
C# |
|
// Set the value of the cash discount to 2.0
oSuppl.SetFieldVal (eSupplFld.supfFinDiscount, 2.0);
|
|
|
VBS |
|
' Set the value of the cash discount to 2.0
Call oSuppl.SetFieldVal(oSuppl.GetFieldID("FinDiscount"), 2.0)
|
|
|
VB.NET |
|
' Set the value of the cash discount to 2.0
oSuppl.SetFieldVal(eSupplFld.supfFinDiscount, 2.0)
|
|