次の方法で共有


Pen.RotateTransform メソッド (Single, MatrixOrder)

指定した順序で、指定した角度だけローカル ジオメトリック変換を回転します。

Overloads Public Sub RotateTransform( _
   ByVal angle As Single, _   ByVal order As MatrixOrder _)
[C#]
public void RotateTransform(floatangle,MatrixOrderorder);
[C++]
public: void RotateTransform(floatangle,MatrixOrderorder);
[JScript]
public function RotateTransform(
   angle : float,order : MatrixOrder);

パラメータ

  • angle
    回転角度。
  • order
    回転行列を後に適用するか、前に適用するかを指定する MatrixOrder

戻り値

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

解説

ペンの形状は円形であるため、x 方向または y 方向にペンをスケーリングしない限り、回転してもその効果は画面に現れません。

使用例

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

  • Pen オブジェクトを作成します。
  • ペンを x 方向に 2 倍スケーリングします。
  • ペンを使用して四角形を描画します。
  • ペンを時計回り方向に 90 度回転します。
  • 2 番目の四角形を描画して、差異を示します。
 
Public Sub RotateTransform_Example(e As PaintEventArgs)
' Create a Pen object.
Dim rotatePen As New Pen(Color.Black, 5)
' Scale rotatePen by 2X in the x-direction.
rotatePen.ScaleTransform(2, 1)
' Draw a rectangle with rotatePen.
e.Graphics.DrawRectangle(rotatePen, 10, 10, 100, 100)
' Rotate rotatePen 90 degrees clockwise.
rotatePen.RotateTransform(90, MatrixOrder.Append)
' Draw a second rectangle with rotatePen.
e.Graphics.DrawRectangle(rotatePen, 120, 10, 100, 100)
End Sub
        
[C#] 
public void RotateTransform_Example(PaintEventArgs e)
{
// Create a Pen object.
Pen rotatePen = new Pen(Color.Black, 5);
// Scale rotatePen by 2X in the x-direction.
rotatePen.ScaleTransform(2, 1);
// Draw a rectangle with rotatePen.
e.Graphics.DrawRectangle(rotatePen, 10, 10, 100, 100);
// Rotate rotatePen 90 degrees clockwise.
rotatePen.RotateTransform(90, MatrixOrder.Append);
// Draw a second rectangle with rotatePen.
e.Graphics.DrawRectangle(rotatePen, 120, 10, 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.RotateTransform オーバーロードの一覧