GetBounds

GetBounds()

返回一个以此为边界的矩形GraphicsPath.

public RectangleF GetBounds()

返回值

一个RectangleF表示一个矩形 bounds thisGraphicsPath.

也可以看看


GetBounds(Matrix)

返回一个以此为边界的矩形GraphicsPath当这个路径是 被指定的变换Matrix.

public RectangleF GetBounds(Matrix matrix)
范围类型描述
matrixMatrix这Matrix指定一个transformation 在计算边界矩形之前应用到这个路径。 这个路径不是永久变换的;该转换仅在计算边界矩形的 process 期间使用。

返回值

一个RectangleF表示一个矩形 bounds thisGraphicsPath.

也可以看看


GetBounds(Matrix, Pen)

返回一个以此为边界的矩形GraphicsPath当当前路径被 指定变换时Matrix并用指定的绘制Pen.

public RectangleF GetBounds(Matrix matrix, Pen pen)
范围类型描述
matrixMatrix这Matrix指定在计算边界矩形之前要应用于此 path 的转换。此路径不会永久变换; 变换仅在计算边界矩形的过程中使用。
penPen这Pen用它来绘制GraphicsPath.

返回值

一个RectangleF表示以 this 为边界的矩形GraphicsPath.

也可以看看