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
)
參數
- 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 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。