PropertyValuesExtensionMethodsHasValue Method |
Checks whether an object has a specific property and its value is not null.
Namespace:
MFiles.VAF.Common
Assembly:
MFiles.VAF (in MFiles.VAF.dll) Version: 2.3.623.2
Syntaxpublic static bool HasValue(
this PropertyValues props,
int propID
)
<ExtensionAttribute>
Public Shared Function HasValue (
props As PropertyValues,
propID As Integer
) As Boolean
public:
[ExtensionAttribute]
static bool HasValue(
PropertyValues^ props,
int propID
)
Parameters
- props
- Type: PropertyValues
The property values collection. - propID
- Type: SystemInt32
The PropertyDef ID.
Return Value
Type:
BooleanReturns true if the property was found and has a value.
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