Pen.MultiplyTransform メソッド (Matrix)
この Pen オブジェクトの変換行列と指定の Matrix オブジェクトを乗算します。
Overloads Public Sub MultiplyTransform( _
ByVal matrix As Matrix _)
[C#]
public void MultiplyTransform(Matrixmatrix);
[C++]
public: void MultiplyTransform(Matrix* matrix);
[JScript]
public function MultiplyTransform(
matrix : Matrix);
パラメータ
- matrix
変換行列の乗算に使用する Matrix オブジェクト。
戻り値
このメソッドは値を返しません。
解説
このメソッドは、matrix パラメータに指定された乗算行列を変換行列の前に付加して乗算演算を行います。
使用例
[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)
' 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);
// 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 オーバーロードの一覧