ModelElementExtensionMethods.IsExtendedBy Method (ModelElement, Type)

Query whether this ModelElement is currently extended by an ExtensionElement of a particular type.

Namespace:  Microsoft.VisualStudio.Modeling.Extensibility
Assembly:  Microsoft.VisualStudio.Modeling.Sdk.12.0 (in Microsoft.VisualStudio.Modeling.Sdk.12.0.dll)

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function IsExtendedBy ( _
    element As ModelElement, _
    extensionType As Type _
) As Boolean
public static bool IsExtendedBy(
    this ModelElement element,
    Type extensionType
)
[ExtensionAttribute]
public:
static bool IsExtendedBy(
    ModelElement^ element, 
    Type^ extensionType
)
static member IsExtendedBy : 
        element:ModelElement * 
        extensionType:Type -> bool
public static function IsExtendedBy(
    element : ModelElement, 
    extensionType : Type
) : boolean

Parameters

  • extensionType
    Type: System.Type

    The type of ExtensionElement to lookup

Return Value

Type: System.Boolean
true if the element has an extension of the specified type, else false

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type ModelElement. 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).

.NET Framework Security

See Also

Reference

ModelElementExtensionMethods Class

IsExtendedBy Overload

Microsoft.VisualStudio.Modeling.Extensibility Namespace