Pen Class
Defines an object used to draw lines and curves. This class cannot be inherited.
Assembly: System.Drawing (in System.Drawing.dll)
| Name | Description | |
|---|---|---|
![]() | Pen(Brush^) | Initializes a new instance of the Pen class with the specified Brush. |
![]() | Pen(Brush^, Single) | |
![]() | Pen(Color) | Initializes a new instance of the Pen class with the specified color. |
![]() | Pen(Color, Single) |
| Name | Description | |
|---|---|---|
![]() | Alignment | Gets or sets the alignment for this Pen. |
![]() | Brush | Gets or sets the Brush that determines attributes of this Pen. |
![]() | Color | Gets or sets the color of this Pen. |
![]() | CompoundArray | Gets or sets an array of values that specifies a compound pen. A compound pen draws a compound line made up of parallel lines and spaces. |
![]() | CustomEndCap | Gets or sets a custom cap to use at the end of lines drawn with this Pen. |
![]() | CustomStartCap | Gets or sets a custom cap to use at the beginning of lines drawn with this Pen. |
![]() | DashCap | Gets or sets the cap style used at the end of the dashes that make up dashed lines drawn with this Pen. |
![]() | DashOffset | Gets or sets the distance from the start of a line to the beginning of a dash pattern. |
![]() | DashPattern | Gets or sets an array of custom dashes and spaces. |
![]() | DashStyle | Gets or sets the style used for dashed lines drawn with this Pen. |
![]() | EndCap | Gets or sets the cap style used at the end of lines drawn with this Pen. |
![]() | LineJoin | Gets or sets the join style for the ends of two consecutive lines drawn with this Pen. |
![]() | MiterLimit | Gets or sets the limit of the thickness of the join on a mitered corner. |
![]() | PenType | Gets the style of lines drawn with this Pen. |
![]() | StartCap | Gets or sets the cap style used at the beginning of lines drawn with this Pen. |
![]() | Transform | Gets or sets a copy of the geometric transformation for this Pen. |
![]() | Width | Gets or sets the width of this Pen, in units of the Graphics object used for drawing. |
| Name | Description | |
|---|---|---|
![]() | Clone() | Creates an exact copy of this Pen. |
![]() | CreateObjRef(Type^) | Creates an object that contains all the relevant information required to generate a proxy used to communicate with a remote object.(Inherited from MarshalByRefObject.) |
![]() | Dispose() | Releases all resources used by this Pen. |
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | Finalize() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Overrides Object::Finalize().) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetLifetimeService() | Retrieves the current lifetime service object that controls the lifetime policy for this instance.(Inherited from MarshalByRefObject.) |
![]() | GetType() | |
![]() | InitializeLifetimeService() | Obtains a lifetime service object to control the lifetime policy for this instance.(Inherited from MarshalByRefObject.) |
![]() | MultiplyTransform(Matrix^) | Multiplies the transformation matrix for this Pen by the specified Matrix. |
![]() | MultiplyTransform(Matrix^, MatrixOrder) | Multiplies the transformation matrix for this Pen by the specified Matrix in the specified order. |
![]() | ResetTransform() | Resets the geometric transformation matrix for this Pen to identity. |
![]() | RotateTransform(Single) | Rotates the local geometric transformation by the specified angle. This method prepends the rotation to the transformation. |
![]() | RotateTransform(Single, MatrixOrder) | Rotates the local geometric transformation by the specified angle in the specified order. |
![]() | ScaleTransform(Single, Single) | Scales the local geometric transformation by the specified factors. This method prepends the scaling matrix to the transformation. |
![]() | ScaleTransform(Single, Single, MatrixOrder) | Scales the local geometric transformation by the specified factors in the specified order. |
![]() | SetLineCap(LineCap, LineCap, DashCap) | Sets the values that determine the style of cap used to end lines drawn by this Pen. |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
![]() | TranslateTransform(Single, Single) | Translates the local geometric transformation by the specified dimensions. This method prepends the translation to the transformation. |
![]() | TranslateTransform(Single, Single, MatrixOrder) | Translates the local geometric transformation by the specified dimensions in the specified order. |
A Pen draws a line of specified width and style. Use the DashStyle property to draw several varieties of dashed lines. The line drawn by a Pen can be filled in a variety of fill styles, including solid colors and textures. The fill style depends on brush or texture that is used as the fill object.
The following code example demonstrates constructing a Pen with a Brush and the effects of setting the LineJoin property on a Pen.
This example is designed to be used with Windows Forms. Paste the code into a form and call the ShowLineJoin method when handling the form's Paint event, passing e as 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; }
Available since 1.1
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.


