Freigeben über


ShapeElement.FindShapeField-Methode (IList<ShapeField>, String)

Sucht nach einem Form-Feld in einer Form.

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

Syntax

'Declaration
Public Shared Function FindShapeField ( _
    shapeFields As IList(Of ShapeField), _
    fieldName As String _
) As ShapeField
public static ShapeField FindShapeField(
    IList<ShapeField> shapeFields,
    string fieldName
)

Parameter

Rückgabewert

Typ: Microsoft.VisualStudio.Modeling.Diagrams.ShapeField
Das erste Formfeld, das über den angegebenen Namen verfügt, oder NULL, wenn kein Feld gefunden wird.

Beispiele

protected override void InitializeDecorators(global::System.Collections.Generic.IList<DslDiagrams::ShapeField> shapeFields, global::System.Collections.Generic.IList<DslDiagrams::Decorator> decorators)
{
base.InitializeDecorators(shapeFields, decorators);

DslDiagrams::ShapeField field1 = DslDiagrams::ShapeElement.FindShapeField(shapeFields, "Title");
DslDiagrams::Decorator decorator1 = new DslDiagrams::ShapeDecorator(field1, DslDiagrams::ShapeDecoratorPosition.InnerTopCenter, DslDiagrams::PointD.Empty);
decorators.Add(decorator1);
}

.NET Framework-Sicherheit

Siehe auch

Referenz

ShapeElement Klasse

FindShapeField-Überladung

Microsoft.VisualStudio.Modeling.Diagrams-Namespace