Microsoft Internet Security and Acceleration Server 2000 |
Gets or sets the value associated with the given name.
FPCVendorParametersSet.Value (sName)[ = vValue ]
HRESULT get_Value( BSTR sName, VARIANT *pvValue ); HRESULT put_Value( BSTR sName, VARIANT vValue );
The property is read-write.
The FPCVendorParametersSet object is used to store data that is defined as {name, value} pairs by using the Value property. The following example stores a property named x having a value of 1:
FPCVendorParametersSet.Value("x") = 1
The phrase Value("x") will return the value.
The Value property is also the default property. The following examples are equivalent:
obj.Value("x) obj("x")