Returns whether the property is handled by the interface.
Syntax
| Visual Basic (Declaration) | |
|---|
Overridable Function PropertyIsHandled( _
ByVal propertyName As String _
) As Boolean |
| Visual Basic (Usage) | Copy Code |
|---|
Dim instance As IPopulateHelperExtended
Dim propertyName As String
Dim value As Boolean
value = instance.PropertyIsHandled(propertyName)
|
| Managed Extensions for C++ | |
|---|
virtual bool PropertyIsHandled(
string* propertyName
) |
| C++/CLI | |
|---|
virtual bool PropertyIsHandled(
String^ propertyName
) |
Parameters
- propertyName
- The name of the property that is checked for being handled.
Return Value
True if the property is handled by the interface; otherwise false.
Requirements
Platforms: Windows 2000, Windows XP family, Windows Server 2003 family, Windows Vista family
See Also