ShapeElement.FindShapeField 方法 (IList<ShapeField>, String)
Shape 功能變數] 圖形中搜尋。
命名空間: Microsoft.VisualStudio.Modeling.Diagrams
組件: Microsoft.VisualStudio.Modeling.Sdk.Diagrams.11.0 (在 Microsoft.VisualStudio.Modeling.Sdk.Diagrams.11.0.dll 中)
語法
'宣告
Public Shared Function FindShapeField ( _
shapeFields As IList(Of ShapeField), _
fieldName As String _
) As ShapeField
public static ShapeField FindShapeField(
IList<ShapeField> shapeFields,
string fieldName
)
參數
- shapeFields
型別:System.Collections.Generic.IList<ShapeField>
[搜尋圖形] 欄位中。
- fieldName
型別:System.String
Shape 功能變數的名稱。
傳回值
型別:Microsoft.VisualStudio.Modeling.Diagrams.ShapeField
具有指定的名稱 ; 由第一個 shape 功能變數 否則便傳回 null,如果找不到任何 shape 功能變數。
範例
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 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。