PropertyValuesExtensionMethodsSetProperty Method (PropertyValues, Int32, MFDataType, Object) |
Adds or updates the specificed property in the property values collection with the passed value.
Namespace:
MFiles.VAF.Common
Assembly:
MFiles.VAF (in MFiles.VAF.dll) Version: 2.3.623.2
Syntaxpublic static PropertyValue SetProperty(
this PropertyValues props,
int propID,
MFDataType dataType,
Object value
)
<ExtensionAttribute>
Public Shared Function SetProperty (
props As PropertyValues,
propID As Integer,
dataType As MFDataType,
value As Object
) As PropertyValue
public:
[ExtensionAttribute]
static PropertyValue^ SetProperty(
PropertyValues^ props,
int propID,
MFDataType dataType,
Object^ value
)
Parameters
- props
- Type: PropertyValues
The source property values in which to set the property. - propID
- Type: SystemInt32
The propertyDef of the PropertyValue - dataType
- Type: MFDataType
The datatype of the PropertyValue - value
- Type: SystemObject
The value of the PropertyValue
Return Value
Type:
PropertyValueThe actual PropertyValue created/added to the propertyValues collection.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
PropertyValues. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also