ShapeElement.InitializeShapeFields Method
Initializes the list of fields that represent parts of the shape such as labels, icons, rows of text, and background images. Called once per class.
Namespace: Microsoft.VisualStudio.Modeling.Diagrams
Assembly: Microsoft.VisualStudio.Modeling.Sdk.Diagrams.11.0 (in Microsoft.VisualStudio.Modeling.Sdk.Diagrams.11.0.dll)
Syntax
'Declaration
Protected Overridable Sub InitializeShapeFields ( _
shapeFields As IList(Of ShapeField) _
)
protected virtual void InitializeShapeFields(
IList<ShapeField> shapeFields
)
protected:
virtual void InitializeShapeFields(
IList<ShapeField^>^ shapeFields
)
abstract InitializeShapeFields :
shapeFields:IList<ShapeField> -> unit
override InitializeShapeFields :
shapeFields:IList<ShapeField> -> unit
protected function InitializeShapeFields(
shapeFields : IList<ShapeField>
)
Parameters
shapeFields
Type: IList<ShapeField>The list to which this method should add instances of ShapeField.
Remarks
To add or modify the shape fields for this shape class, you can override this method. You must set the Generates Double Derived property of the shape class in the DSL Definition.
This method is called once to initialize the class. It is not called for each instance.
For an example, see ImageField.
.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.