ModelElement.RemoveExtension Method (ModelElement, Type)

Remove any extension of the specified ModelElement that is of a particular type.

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

Syntax

'Declaration
Public Shared Function RemoveExtension ( _
    element As ModelElement, _
    extensionType As Type _
) As Boolean
public static bool RemoveExtension(
    ModelElement element,
    Type extensionType
)
public:
static bool RemoveExtension(
    ModelElement^ element, 
    Type^ extensionType
)
static member RemoveExtension : 
        element:ModelElement * 
        extensionType:Type -> bool 
public static function RemoveExtension(
    element : ModelElement, 
    extensionType : Type
) : boolean

Parameters

  • extensionType
    Type: System.Type
    The type of ExtensionElement to remove

Return Value

Type: System.Boolean
true if an extension of the particular type was found and removed, else false

Remarks

Note that assuming the Extensions collection is maintained through the Extensibility API then there can be only one extension of a particular type present, so only the first found is removed.

.NET Framework Security

See Also

Reference

ModelElement Class

RemoveExtension Overload

Microsoft.VisualStudio.Modeling Namespace