ShapeElement.FindShapeField – metoda (IList<ShapeField>, String)
Vyhledá pole obrazce v obrazci.
Obor názvů: Microsoft.VisualStudio.Modeling.Diagrams
Sestavení: Microsoft.VisualStudio.Modeling.Sdk.Diagrams.11.0 (v Microsoft.VisualStudio.Modeling.Sdk.Diagrams.11.0.dll)
Syntaxe
'Deklarace
Public Shared Function FindShapeField ( _
shapeFields As IList(Of ShapeField), _
fieldName As String _
) As ShapeField
public static ShapeField FindShapeField(
IList<ShapeField> shapeFields,
string fieldName
)
Parametry
- shapeFields
Typ: System.Collections.Generic.IList<ShapeField>
Pole obrazce, ve kterém chcete hledat.
- fieldName
Typ: System.String
Název pole obrazce.
Vrácená hodnota
Typ: Microsoft.VisualStudio.Modeling.Diagrams.ShapeField
První pole obrazec zadaným názvem; jinak, null, pokud je nalezena pole žádné obrazce.
Příklady
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);
}
Zabezpečení rozhraní .NET Framework
- Plná důvěra přímému volajícímu. Částečně zabezpečený kód nemůže tento člen použít. Další informace naleznete v tématu Používání knihoven z částečně důvěryhodného kódu.