Pen 類別
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
定義用來繪製直線與曲線的物件。 此類別無法獲得繼承。
public ref class Pen sealed : MarshalByRefObject, ICloneable, IDisposable
public sealed class Pen : MarshalByRefObject, ICloneable, IDisposable
type Pen = class
inherit MarshalByRefObject
interface ICloneable
interface IDisposable
Public NotInheritable Class Pen
Inherits MarshalByRefObject
Implements ICloneable, IDisposable
- 繼承
- 實作
範例
下列程式代碼範例示範如何使用 PenBrush 建構 ,以及在 上Pen設定 LineJoin 屬性的效果。
此範例的設計目的是要與 Windows Forms 搭配使用。 將程式代碼貼到表單中,並在處理表單的事件Paint時呼叫 ShowLineJoin
方法,並傳遞e
為 PaintEventArgs。
private:
void ShowLineJoin( PaintEventArgs^ e )
{
// Create a new pen.
Pen^ skyBluePen = gcnew Pen( Brushes::DeepSkyBlue );
// Set the pen's width.
skyBluePen->Width = 8.0F;
// Set the LineJoin property.
skyBluePen->LineJoin = System::Drawing::Drawing2D::LineJoin::Bevel;
// Draw a rectangle.
e->Graphics->DrawRectangle( skyBluePen, Rectangle(40,40,150,200) );
//Dispose of the pen.
delete skyBluePen;
}
private void ShowLineJoin(PaintEventArgs e)
{
// Create a new pen.
Pen skyBluePen = new Pen(Brushes.DeepSkyBlue);
// Set the pen's width.
skyBluePen.Width = 8.0F;
// Set the LineJoin property.
skyBluePen.LineJoin = System.Drawing.Drawing2D.LineJoin.Bevel;
// Draw a rectangle.
e.Graphics.DrawRectangle(skyBluePen,
new Rectangle(40, 40, 150, 200));
//Dispose of the pen.
skyBluePen.Dispose();
}
Private Sub ShowLineJoin(ByVal e As PaintEventArgs)
' Create a new pen.
Dim skyBluePen As New Pen(Brushes.DeepSkyBlue)
' Set the pen's width.
skyBluePen.Width = 8.0F
' Set the LineJoin property.
skyBluePen.LineJoin = Drawing2D.LineJoin.Bevel
' Draw a rectangle.
e.Graphics.DrawRectangle(skyBluePen, _
New Rectangle(40, 40, 150, 200))
'Dispose of the pen.
skyBluePen.Dispose()
End Sub
備註
繪製 Pen 指定寬度和樣式的線條。 DashStyle使用屬性來繪製數條虛線。 所繪製的 Pen 線條可以填入各種填滿樣式,包括純色和紋理。 填滿樣式取決於做為填滿物件的筆刷或紋理。
注意
在 .NET 6 和更新版本中,只有 Windows 作業系統才支援包含此類型的 System.Drawing.Common 套件。 在跨平臺應用程式中使用此類型會導致編譯時間警告和運行時間例外狀況。 如需詳細資訊,請參閱 僅限 Windows 上支援的 System.Drawing.Common。
建構函式
Pen(Brush) | |
Pen(Brush, Single) | |
Pen(Color) |
使用指定的色彩,初始化 Pen 類別的新執行個體。 |
Pen(Color, Single) |
屬性
Alignment |
取得或設定這個 Pen 的對齊。 |
Brush | |
Color |
取得或設定這個 Pen 的色彩。 |
CompoundArray |
取得或設定指定複合畫筆的值陣列。 複合畫筆會繪製由平行線和間距組成的複合直線。 |
CustomEndCap |
取得或設定自訂帽緣,用於以這個 Pen 所繪製的直線末端。 |
CustomStartCap |
取得或設定自訂帽緣,用於以這個 Pen 所繪製的直線開端。 |
DashCap |
取得或設定帽緣樣式,用於組成以這個 Pen 所繪製短折線的虛線末端。 |
DashOffset |
取得或設定從直線開端至虛線圖樣開端的距離。 |
DashPattern |
取得或設定自訂虛線和間距的陣列。 |
DashStyle |
取得或設定樣式,用於以這個 Pen 所繪製的短折線。 |
EndCap |
取得或設定帽緣樣式,用於以這個 Pen 所繪製的直線末端。 |
LineJoin |
取得或設定以這個 Pen 所繪製之兩條連續直線末端的接合樣式。 |
MiterLimit |
取得或設定斜接角上的接合厚度限制。 |
PenType |
取得以這個 Pen 所繪製的直線樣式。 |
StartCap |
取得或設定帽緣樣式,用於以這個 Pen 所繪製的直線開端。 |
Transform |
取得或設定這個 Pen 幾何轉換的複本。 |
Width |