共用方式為


Graphics.FillPie 方法

定義

填滿由一對座標、寬度、高度和兩條星形線所指定的橢圓形所定義的餅圖區段內部。

多載

FillPie(Brush, Rectangle, Single, Single)

填滿由 RectangleF 結構和兩條星形線所指定橢圓形所定義的餅圖區段內部。

FillPie(Brush, RectangleF, Single, Single)

填滿橢圓形和兩條星形線所定義的餅圖區段內部。

FillPie(Brush, Int32, Int32, Int32, Int32, Int32, Int32)

填滿由一對座標、寬度、高度和兩條星形線所指定的橢圓形所定義的餅圖區段內部。

FillPie(Brush, Single, Single, Single, Single, Single, Single)

填滿由一對座標、寬度、高度和兩條星形線所指定的橢圓形所定義的餅圖區段內部。

FillPie(Brush, Rectangle, Single, Single)

來源:
Graphics.cs
來源:
Graphics.cs
來源:
Graphics.cs
來源:
Graphics.cs
來源:
Graphics.cs

填滿由 RectangleF 結構和兩條星形線所指定橢圓形所定義的餅圖區段內部。

public:
 void FillPie(System::Drawing::Brush ^ brush, System::Drawing::Rectangle rect, float startAngle, float sweepAngle);
public void FillPie (System.Drawing.Brush brush, System.Drawing.Rectangle rect, float startAngle, float sweepAngle);
member this.FillPie : System.Drawing.Brush * System.Drawing.Rectangle * single * single -> unit
Public Sub FillPie (brush As Brush, rect As Rectangle, startAngle As Single, sweepAngle As Single)

參數

brush
Brush

決定填滿特性的 Brush

rect
Rectangle

Rectangle 結構,代表定義餅圖區段所傳來之橢圓形的周框。

startAngle
Single

從 X 軸到餅圖區段第一側的順時針測量角度。

sweepAngle
Single

startAngle 參數到餅圖區段第二側,以度為單位的角度。

例外狀況

brush null

範例

下列程式代碼範例是專為搭配 Windows Forms 使用而設計,而且需要 PaintEventArgse,這是 Paint 事件處理程式的參數。 程式代碼會執行下列動作:

  • 建立純紅色筆刷。

  • 建立限定橢圓形的矩形。

  • 定義起點角度(相對於 x 軸)和掃掠角度(兩者都是順時針方向)。

  • 填滿螢幕上橢圓形的餅形區域。

public:
   void FillPieRectangle( PaintEventArgs^ e )
   {
      // Create solid brush.
      SolidBrush^ redBrush = gcnew SolidBrush( Color::Red );

      // Create rectangle for ellipse.
      Rectangle rect = Rectangle(0,0,200,100);

      // Create start and sweep angles.
      float startAngle = 0.0F;
      float sweepAngle = 45.0F;

      // Fill pie to screen.
      e->Graphics->FillPie( redBrush, rect, startAngle, sweepAngle );
   }
public void FillPieRectangle(PaintEventArgs e)
{
             
    // Create solid brush.
    SolidBrush redBrush = new SolidBrush(Color.Red);
             
    // Create rectangle for ellipse.
    Rectangle rect = new Rectangle(0, 0, 200, 100);
             
    // Create start and sweep angles.
    float startAngle =  0.0F;
    float sweepAngle = 45.0F;
             
    // Fill pie to screen.
    e.Graphics.FillPie(redBrush, rect, startAngle, sweepAngle);
}
Public Sub FillPieRectangle(ByVal e As PaintEventArgs)

    ' Create solid brush.
    Dim redBrush As New SolidBrush(Color.Red)

    ' Create rectangle for ellipse.
    Dim rect As New Rectangle(0, 0, 200, 100)

    ' Create start and sweep angles.
    Dim startAngle As Single = 0.0F
    Dim sweepAngle As Single = 45.0F

    ' Fill pie to screen.
    e.Graphics.FillPie(redBrush, rect, startAngle, sweepAngle)
End Sub

備註

這個方法會填滿橢圓形弧線所定義的餅圖區段內部,以及與弧線端點交集的兩條星形線。橢圓形是由周框所定義。 餅圖區段包含由 startAnglesweepAngle 參數所定義的兩條星形線,以及這些星形線與橢圓形線交集之間的弧線。

如果 sweepAngle 參數大於 360 度或小於 -360 度,則會將它視為 360 度或 -360 度。

適用於

FillPie(Brush, RectangleF, Single, Single)

來源:
Graphics.cs
來源:
Graphics.cs
來源:
Graphics.cs
來源:
Graphics.cs
來源:
Graphics.cs

填滿橢圓形和兩條星形線所定義的餅圖區段內部。

public:
 void FillPie(System::Drawing::Brush ^ brush, System::Drawing::RectangleF rect, float startAngle, float sweepAngle);
public void FillPie (System.Drawing.Brush brush, System.Drawing.RectangleF rect, float startAngle, float sweepAngle);
member this.FillPie : System.Drawing.Brush * System.Drawing.RectangleF * single * single -> unit
Public Sub FillPie (brush As Brush, rect As RectangleF, startAngle As Single, sweepAngle As Single)

參數

brush
Brush

決定填滿特性的筆刷。

rect
RectangleF

定義餅圖區段所屬橢圓形的周框。

startAngle
Single

從 X 軸到餅圖區段第一側的順時針測量角度。

sweepAngle
Single

startAngle 參數到餅圖區段第二側,以度為單位的角度。

適用於

FillPie(Brush, Int32, Int32, Int32, Int32, Int32, Int32)

來源:
Graphics.cs
來源:
Graphics.cs
來源:
Graphics.cs
來源:
Graphics.cs
來源:
Graphics.cs

填滿由一對座標、寬度、高度和兩條星形線所指定的橢圓形所定義的餅圖區段內部。

public:
 void FillPie(System::Drawing::Brush ^ brush, int x, int y, int width, int height, int startAngle, int sweepAngle);
public void FillPie (System.Drawing.Brush brush, int x, int y, int width, int height, int startAngle, int sweepAngle);
member this.FillPie : System.Drawing.Brush * int * int * int * int * int * int -> unit
Public Sub FillPie (brush As Brush, x As Integer, y As Integer, width As Integer, height As Integer, startAngle As Integer, sweepAngle As Integer)

參數

brush
Brush

決定填滿特性的 Brush

x
Int32

周框左上角的 X 座標,定義餅圖區段的橢圓形。

y
Int32

周框左上角的 Y 座標,定義餅圖區段的橢圓形。

width
Int32

周框的寬度,定義餅圖區段的橢圓形。

height
Int32

周框的高度,定義餅圖區段的橢圓形。

startAngle
Int32

從 X 軸到餅圖區段第一側的順時針測量角度。

sweepAngle
Int32

startAngle 參數到餅圖區段第二側,以度為單位的角度。

例外狀況

brush null

範例

下列程式代碼範例是專為搭配 Windows Forms 使用而設計,而且需要 PaintEventArgse,這是 Paint 事件處理程式的參數。 程式代碼會執行下列動作:

  • 建立純紅色筆刷。

  • 建立限定橢圓形的矩形位置和大小。

  • 定義起點角度(相對於 x 軸)和掃掠角度(兩者都是順時針方向)。

  • 填滿螢幕上橢圓形的餅形區域。

public:
   void FillPieInt( PaintEventArgs^ e )
   {
      // Create solid brush.
      SolidBrush^ redBrush = gcnew SolidBrush( Color::Red );

      // Create location and size of ellipse.
      int x = 0;
      int y = 0;
      int width = 200;
      int height = 100;

      // Create start and sweep angles.
      int startAngle = 0;
      int sweepAngle = 45;
      
      // Fill pie to screen.
      e->Graphics->FillPie( redBrush, x, y, width, height, startAngle, sweepAngle );
   }
public void FillPieInt(PaintEventArgs e)
{
             
    // Create solid brush.
    SolidBrush redBrush = new SolidBrush(Color.Red);
             
    // Create location and size of ellipse.
    int x = 0;
    int y = 0;
    int width = 200;
    int height = 100;
             
    // Create start and sweep angles.
    int startAngle =  0;
    int sweepAngle = 45;
             
    // Fill pie to screen.
    e.Graphics.FillPie(redBrush, x, y, width, height, startAngle, sweepAngle);
}
Public Sub FillPieInt(ByVal e As PaintEventArgs)

    ' Create solid brush.
    Dim redBrush As New SolidBrush(Color.Red)

    ' Create location and size of ellipse.
    Dim x As Integer = 0
    Dim y As Integer = 0
    Dim width As Integer = 200
    Dim height As Integer = 100

    ' Create start and sweep angles.
    Dim startAngle As Integer = 0
    Dim sweepAngle As Integer = 45

    ' Fill pie to screen.
    e.Graphics.FillPie(redBrush, x, y, width, height, startAngle, _
    sweepAngle)
End Sub

備註

這個方法會填滿橢圓形弧線所定義的餅圖區段內部,以及與弧線端點交集的兩條星形線。橢圓形是由周框所定義。 餅圖區段包含由 startAnglesweepAngle 參數所定義的兩條星形線,以及這些星形線與橢圓形線交集之間的弧線。

如果 sweepAngle 參數大於 360 度或小於 -360 度,則會將它視為 360 度或 -360 度。

適用於

FillPie(Brush, Single, Single, Single, Single, Single, Single)

來源:
Graphics.cs
來源:
Graphics.cs
來源:
Graphics.cs
來源:
Graphics.cs
來源:
Graphics.cs

填滿由一對座標、寬度、高度和兩條星形線所指定的橢圓形所定義的餅圖區段內部。

public:
 void FillPie(System::Drawing::Brush ^ brush, float x, float y, float width, float height, float startAngle, float sweepAngle);
public void FillPie (System.Drawing.Brush brush, float x, float y, float width, float height, float startAngle, float sweepAngle);
member this.FillPie : System.Drawing.Brush * single * single * single * single * single * single -> unit
Public Sub FillPie (brush As Brush, x As Single, y As Single, width As Single, height As Single, startAngle As Single, sweepAngle As Single)

參數

brush
Brush

決定填滿特性的 Brush

x
Single

周框左上角的 X 座標,定義餅圖區段的橢圓形。

y
Single

周框左上角的 Y 座標,定義餅圖區段的橢圓形。

width
Single

周框的寬度,定義餅圖區段的橢圓形。

height
Single

周框的高度,定義餅圖區段的橢圓形。

startAngle
Single

從 X 軸到餅圖區段第一側的順時針測量角度。

sweepAngle
Single

startAngle 參數到餅圖區段第二側,以度為單位的角度。

例外狀況

brush null

範例

下列程式代碼範例是專為搭配 Windows Forms 使用而設計,而且需要 PaintEventArgse,這是 Paint 事件處理程式的參數。 程式代碼會執行下列動作:

  • 建立純紅色筆刷。

  • 建立限定橢圓形的矩形位置和大小。

  • 定義起點角度(相對於 x 軸)和掃掠角度(兩者都是順時針方向)。

  • 填滿螢幕上橢圓形的餅形區域。

public:
   void FillPieFloat( PaintEventArgs^ e )
   {
      // Create solid brush.
      SolidBrush^ redBrush = gcnew SolidBrush( Color::Red );

      // Create location and size of ellipse.
      float x = 0.0F;
      float y = 0.0F;
      float width = 200.0F;
      float height = 100.0F;

      // Create start and sweep angles.
      float startAngle = 0.0F;
      float sweepAngle = 45.0F;

      // Fill pie to screen.
      e->Graphics->FillPie( redBrush, x, y, width, height, startAngle, sweepAngle );
   }
public void FillPieFloat(PaintEventArgs e)
{
             
    // Create solid brush.
    SolidBrush redBrush = new SolidBrush(Color.Red);
             
    // Create location and size of ellipse.
    float x = 0.0F;
    float y = 0.0F;
    float width = 200.0F;
    float height = 100.0F;
             
    // Create start and sweep angles.
    float startAngle =  0.0F;
    float sweepAngle = 45.0F;
             
    // Fill pie to screen.
    e.Graphics.FillPie(redBrush, x, y, width, height, startAngle, sweepAngle);
}
Public Sub FillPieFloat(ByVal e As PaintEventArgs)

    ' Create solid brush.
    Dim redBrush As New SolidBrush(Color.Red)

    ' Create location and size of ellipse.
    Dim x As Single = 0.0F
    Dim y As Single = 0.0F
    Dim width As Single = 200.0F
    Dim height As Single = 100.0F

    ' Create start and sweep angles.
    Dim startAngle As Single = 0.0F
    Dim sweepAngle As Single = 45.0F

    ' Fill pie to screen.
    e.Graphics.FillPie(redBrush, x, y, width, height, startAngle, _
    sweepAngle)
End Sub

備註

這個方法會填滿橢圓形弧線所定義的餅圖區段內部,以及與弧線端點交集的兩條星形線。橢圓形是由周框所定義。 餅圖區段包含由 startAnglesweepAngle 參數定義的兩條星形線,以及這些星形線與橢圓形線交集之間的弧線。

如果 sweepAngle 參數大於 360 度或小於 -360 度,則會將它視為 360 度或 -360 度。

適用於