共用方式為


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
)

參數

傳回值

類型: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 命名空間