ShapeGeometry.GetPath 方法 (RectangleD)
取得在圖案幾何周圍的路徑。
命名空間: Microsoft.VisualStudio.Modeling.Diagrams
組件: Microsoft.VisualStudio.Modeling.Sdk.Diagrams.12.0 (在 Microsoft.VisualStudio.Modeling.Sdk.Diagrams.12.0.dll 中)
語法
'宣告
Protected Overridable Function GetPath ( _
boundingBox As RectangleD _
) As GraphicsPath
protected virtual GraphicsPath GetPath(
RectangleD boundingBox
)
參數
- boundingBox
類型:Microsoft.VisualStudio.Modeling.Diagrams.RectangleD
圖形或連結的周框方塊,相對於圖形父代的左上角。
傳回值
類型:System.Drawing.Drawing2D.GraphicsPath
圖案幾何形狀周圍的路徑。
備註
這個屬性會傳回這個幾何使用路徑的參考。 不要將其設定為。 在重複使用 GetPath() 之前使用路徑。 如果您需要一份複本,請使用 GetPathCopy。
範例
這個範例是迴圈軋材。 請使用 UninitializedPath 而重設。
/// <summary>
/// Gets the GraphicsPath of the geometry.
/// Returns a reference to the path - do not dispose it.
/// </summary>
/// <param name="boundingBox">The bounding box of the shape.</param>
/// <returns>The GraphicsPath of the geometry.</returns>
protected override GraphicsPath GetPath(RectangleD boundingBox)
{
GraphicsPath path = UninitializedPath;
path.Reset();
path.AddEllipse((float)boundingBox.X, (float)boundingBox.Y, (float)boundingBox.Width, (float)boundingBox.Height);
return path;
}
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。