Pen.Transform Property

Definition

Gets or sets a copy of the geometric transformation for this Pen.

public:
 property System::Drawing::Drawing2D::Matrix ^ Transform { System::Drawing::Drawing2D::Matrix ^ get(); void set(System::Drawing::Drawing2D::Matrix ^ value); };
public System.Drawing.Drawing2D.Matrix Transform { get; set; }
member this.Transform : System.Drawing.Drawing2D.Matrix with get, set
Public Property Transform As Matrix

Property Value

A copy of the Matrix that represents the geometric transformation for this Pen.

Exceptions

The Transform property is set on an immutable Pen, such as those returned by the Pens class.

Remarks

This property defines an elliptical shape for the pen tip. This ellipse is obtained from the default circular shape by applying the transformation matrix. Note that the translation portion of the matrix is ignored. Because the matrix returned and by the Transform property is a copy of the pen's geometric transform, you should dispose of the matrix when you no longer need it.

Applies to