Pen.RotateTransform メソッド (Single)
指定した角度だけローカル ジオメトリック変換を回転します。このメソッドは変換の前に回転を行います。
Overloads Public Sub RotateTransform( _
ByVal angle As Single _)
[C#]
public void RotateTransform(floatangle);
[C++]
public: void RotateTransform(floatangle);
[JScript]
public function RotateTransform(
angle : float);
パラメータ
- angle
回転角度。
戻り値
このメソッドは値を返しません。
解説
ペンの形状は円形であるため、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)
' Draw a rectangle with rotatePen.
e.Graphics.DrawRectangle(rotatePen, 10, 10, 100, 100)
' Scale rotatePen by 2X in the x-direction.
rotatePen.ScaleTransform(2, 1)
' Rotate rotatePen 90 degrees clockwise.
rotatePen.RotateTransform(90)
' Draw a second rectangle with rotatePen.
e.Graphics.DrawRectangle(rotatePen, 140, 10, 100, 100)
End Sub
[C#]
public void RotateTransform_Example(PaintEventArgs e)
{
// Create a Pen object.
Pen rotatePen = new Pen(Color.Black, 5);
// Draw a rectangle with rotatePen.
e.Graphics.DrawRectangle(rotatePen, 10, 10, 100, 100);
// Scale rotatePen by 2X in the x-direction.
rotatePen.ScaleTransform(2, 1);
// Rotate rotatePen 90 degrees clockwise.
rotatePen.RotateTransform(90);
// Draw a second rectangle with rotatePen.
e.Graphics.DrawRectangle(rotatePen, 140, 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 オーバーロードの一覧