ShapeElement.FindShapeField, méthode (IList<ShapeField>, String)
Recherche un champ de forme dans une forme.
Espace de noms : Microsoft.VisualStudio.Modeling.Diagrams
Assembly : Microsoft.VisualStudio.Modeling.Sdk.Diagrams.12.0 (dans Microsoft.VisualStudio.Modeling.Sdk.Diagrams.12.0.dll)
Syntaxe
'Déclaration
Public Shared Function FindShapeField ( _
shapeFields As IList(Of ShapeField), _
fieldName As String _
) As ShapeField
public static ShapeField FindShapeField(
IList<ShapeField> shapeFields,
string fieldName
)
Paramètres
- shapeFields
Type : System.Collections.Generic.IList<ShapeField>
Champs de forme dans lesquels effectuer la recherche.
- fieldName
Type : System.String
Nom du champ de forme.
Valeur de retour
Type : Microsoft.VisualStudio.Modeling.Diagrams.ShapeField
Premier champ de forme portant le nom spécifié ; sinon, Null, si aucun champ de forme n'est trouvé.
Exemples
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);
}
Sécurité .NET Framework
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, consultez Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.