次の方法で共有


Pen.MultiplyTransform メソッド (Matrix, MatrixOrder)

この Pen オブジェクトの変換行列と指定の Matrix オブジェクトを指定の順序で乗算します。

Overloads Public Sub MultiplyTransform( _
   ByVal matrix As Matrix, _   ByVal order As MatrixOrder _)
[C#]
public void MultiplyTransform(Matrixmatrix,MatrixOrderorder);
[C++]
public: void MultiplyTransform(Matrix* matrix,MatrixOrderorder);
[JScript]
public function MultiplyTransform(
   matrix : Matrix,order : MatrixOrder);

パラメータ

  • matrix
    変換行列の乗算に使用する Matrix オブジェクト。
  • order
    乗算演算を実行する順序。

戻り値

このメソッドは値を返しません。

解説

このメソッドは、order パラメータで (前または後に) 指定された MatrixOrder 列挙体要素を使用して、乗算演算を実行します。

使用例

[Visual Basic, C#] 次の例は、Windows フォームでの使用を意図してデザインされており、 Paint イベント ハンドラのパラメータである PaintEventArgs e が必要です。このコードは次のアクションを実行します。

  • Pen オブジェクトを作成します。
  • 画面に直線を描画します。
  • ペンの変換行列と指定の行列を乗算します。
  • 変換済みのペンで直線を描画します。
 
Public Sub MultiplyTransform_Example(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
        
[C#] 
public void MultiplyTransform_Example(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);
};
        

[C++, JScript] C++ および JScript のサンプルはありません。Visual Basic および C# のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ

参照

Pen クラス | Pen メンバ | System.Drawing 名前空間 | Pen.MultiplyTransform オーバーロードの一覧