共用方式為


ShapeGeometry.GetPath 方法 (RectangleD)

取得路徑來解決圖形幾何。

命名空間:  Microsoft.VisualStudio.Modeling.Diagrams
組件:  Microsoft.VisualStudio.Modeling.Sdk.Diagrams.11.0 (在 Microsoft.VisualStudio.Modeling.Sdk.Diagrams.11.0.dll 中)

語法

'宣告
Protected Overridable Function GetPath ( _
    boundingBox As RectangleD _
) As GraphicsPath
protected virtual GraphicsPath GetPath(
    RectangleD boundingBox
)

參數

傳回值

型別: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 安全性

請參閱

參考

ShapeGeometry 類別

GetPath 多載

Microsoft.VisualStudio.Modeling.Diagrams 命名空間