Pen.MultiplyTransform Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
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. |
MultiplyTransform(Matrix)
- Source:
- Pen.cs
- Source:
- Pen.cs
- Source:
- Pen.cs
- Source:
- Pen.cs
- Source:
- Pen.cs
public:
void MultiplyTransform(System::Drawing::Drawing2D::Matrix ^ matrix);
public void MultiplyTransform (System.Drawing.Drawing2D.Matrix matrix);
member this.MultiplyTransform : System.Drawing.Drawing2D.Matrix -> unit
Public Sub MultiplyTransform (matrix As Matrix)
Parameters
Examples
The following code example is designed for use with Windows Forms, and it requires PaintEventArgs e
, which is a parameter of the Paint event handler. The code performs the following actions:
Creates a Pen.
Draws a line to the screen.
Multiplies the transformation matrix of the pen by the specified matrix.
Draws a line with the transformed pen.
public:
void MultiplyTransform_Example1( PaintEventArgs^ e )
{
// Create a Pen object.
Pen^ myPen = gcnew Pen( Color::Black,5.0f );
// Create a translation matrix.
Matrix^ penMatrix = gcnew Matrix;
penMatrix->Scale( 3, 1 );
// Multiply the transformation matrix of myPen by transMatrix.
myPen->MultiplyTransform( penMatrix );
// Draw a line to the screen.
e->Graphics->DrawLine( myPen, 0, 0, 100, 100 );
}
public void MultiplyTransform_Example1(PaintEventArgs e)
{
// Create a Pen object.
Pen myPen = new Pen(Color.Black, 5);
// Create a translation matrix.
Matrix penMatrix = new Matrix();
penMatrix.Scale(3, 1);
// Multiply the transformation matrix of myPen by transMatrix.
myPen.MultiplyTransform(penMatrix);
// Draw a line to the screen.
e.Graphics.DrawLine(myPen, 0, 0, 100, 100);
}
Public Sub MultiplyTransform_Example1(ByVal e As PaintEventArgs)
' Create a Pen object.
Dim myPen As New Pen(Color.Black, 5)
' Create a translation matrix.
Dim penMatrix As New Matrix
penMatrix.Scale(3, 1)
' Multiply the transformation matrix of myPen by transMatrix.
myPen.MultiplyTransform(penMatrix)
' Draw a line to the screen.
e.Graphics.DrawLine(myPen, 0, 0, 100, 100)
End Sub
Remarks
This method prepends the multiplication matrix specified in the matrix
parameter to the transformation matrix for the multiplication operation.
Applies to
MultiplyTransform(Matrix, MatrixOrder)
- Source:
- Pen.cs
- Source:
- Pen.cs
- Source:
- Pen.cs
- Source:
- Pen.cs
- Source:
- Pen.cs
public:
void MultiplyTransform(System::Drawing::Drawing2D::Matrix ^ matrix, System::Drawing::Drawing2D::MatrixOrder order);
public void MultiplyTransform (System.Drawing.Drawing2D.Matrix matrix, System.Drawing.Drawing2D.MatrixOrder order);
member this.MultiplyTransform : System.Drawing.Drawing2D.Matrix * System.Drawing.Drawing2D.MatrixOrder -> unit
Public Sub MultiplyTransform (matrix As Matrix, order As MatrixOrder)
Parameters
- order
- MatrixOrder
The order in which to perform the multiplication operation.
Examples
The following code example is designed for use with Windows Forms, and it requires PaintEventArgs e
, which is a parameter of the Paint event handler. The code performs the following actions:
Creates a Pen.
Draws a line to the screen.
Multiplies the transformation matrix of the pen by the specified matrix.
Draws a line with the transformed pen.
public:
void MultiplyTransform_Example2( PaintEventArgs^ e )
{
// Create a Pen object.
Pen^ myPen = gcnew Pen( Color::Black,5.0f );
// Create a translation matrix.
Matrix^ penMatrix = gcnew Matrix;
penMatrix->Scale( 3, 1 );
// Multiply the transformation matrix of myPen by transMatrix.
myPen->MultiplyTransform( penMatrix, MatrixOrder::Prepend );
// Draw a line to the screen.
e->Graphics->DrawLine( myPen, 0, 0, 100, 100 );
}
public void MultiplyTransform_Example2(PaintEventArgs e)
{
// Create a Pen object.
Pen myPen = new Pen(Color.Black, 5);
// Create a translation matrix.
Matrix penMatrix = new Matrix();
penMatrix.Scale(3, 1);
// Multiply the transformation matrix of myPen by transMatrix.
myPen.MultiplyTransform(penMatrix, MatrixOrder.Prepend);
// Draw a line to the screen.
e.Graphics.DrawLine(myPen, 0, 0, 100, 100);
}
Public Sub MultiplyTransform_Example2(ByVal e As PaintEventArgs)
' Create a Pen object.
Dim myPen As New Pen(Color.Black, 5)
' Create a translation matrix.
Dim penMatrix As New Matrix
penMatrix.Scale(3, 1)
' Multiply the transformation matrix of myPen by transMatrix.
myPen.MultiplyTransform(penMatrix, MatrixOrder.Prepend)
' Draw a line to the screen.
e.Graphics.DrawLine(myPen, 0, 0, 100, 100)
End Sub
Remarks
This method uses the MatrixOrder enumeration element (either prepend or append) specified by the order
parameter to carry out the multiplication operation.