PropertyValuesExtensionMethodsGetProperty Method |
Returns the specified object property if found.
Namespace:
MFiles.VAF.Common
Assembly:
MFiles.VAF (in MFiles.VAF.dll) Version: 2.3.623.2
Syntaxpublic static PropertyValue GetProperty(
this PropertyValues props,
int propID
)
<ExtensionAttribute>
Public Shared Function GetProperty (
props As PropertyValues,
propID As Integer
) As PropertyValue
public:
[ExtensionAttribute]
static PropertyValue^ GetProperty(
PropertyValues^ props,
int propID
)
Parameters
- props
- Type: PropertyValues
The property values collection. - propID
- Type: SystemInt32
The PropertyDef id of the property to look for.
Return Value
Type:
PropertyValueReturns null if not found.
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