StructuredClassifierExtensions.CreatePart Method (IStructuredClassifier, IComponent)
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Create a new Part, with a given type, or with a new type. Specify a null type to create a new Component as the type of the Part.
Namespace: Microsoft.VisualStudio.Uml.Extensions
Assembly: Microsoft.VisualStudio.Uml.Extensions (in Microsoft.VisualStudio.Uml.Extensions.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function CreatePart ( _
structuredClassifier As IStructuredClassifier, _
propertyType As IComponent _
) As IProperty
'Usage
Dim structuredClassifier As IStructuredClassifier
Dim propertyType As IComponent
Dim returnValue As IProperty
returnValue = structuredClassifier.CreatePart(propertyType)
public static IProperty CreatePart(
this IStructuredClassifier structuredClassifier,
IComponent propertyType
)
[ExtensionAttribute]
public:
static IProperty^ CreatePart(
IStructuredClassifier^ structuredClassifier,
IComponent^ propertyType
)
static member CreatePart :
structuredClassifier:IStructuredClassifier *
propertyType:IComponent -> IProperty
public static function CreatePart(
structuredClassifier : IStructuredClassifier,
propertyType : IComponent
) : IProperty
Parameters
- structuredClassifier
Type: Microsoft.VisualStudio.Uml.CompositeStructures.IStructuredClassifier
parent structuredClassifier
- propertyType
Type: Microsoft.VisualStudio.Uml.Components.IComponent
property Type of the newly created IProperty. If null, a new component will be created, and the new IProperty will have that type.
Return Value
Type: Microsoft.VisualStudio.Uml.Classes.IProperty
Newly created IProperty object
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IStructuredClassifier. 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
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
StructuredClassifierExtensions Class