ShapeGeometry.GetPath 方法
包含受保護的成員
包含繼承的成員
取得在圖案幾何周圍的路徑。 使用傳回的路徑,再套用 GetPath() 至任何其他的圖案。 如果您想要保留路徑,請使用 GetPathCopy() 。
這個成員是多載的。如需這個成員的完整資訊,包含語法、使用方式和範例,請按一下多載清單中的名稱。
多載清單
名稱 | 描述 | |
---|---|---|
GetPath(IGeometryHost) | 取得在圖案幾何周圍的路徑。使用傳回的路徑,再套用 GetPath() 至任何其他的圖案。如果您想要保留路徑,請使用 GetPathCopy() 。 | |
GetPath(RectangleD) | 取得在圖案幾何周圍的路徑。 |
回頁首
範例
這個範例是迴圈軋材。 請使用 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;
}