次の方法で共有


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

LinearGradientBrush オブジェクトのローカル ジオメトリック変換を表す Matrix オブジェクトに、指定された 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
    2 つの行列を掛け合わせる順序を指定する MatrixOrder 列挙体。

使用例

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

  • 新しい LinearGradientBrush オブジェクトを作成します。
  • ブラシを使用して画面に楕円を描画します。
  • MultiplyTransform メソッドを呼び出して、 LinearGradientBrush オブジェクトを変換します。
  • 変換されたブラシを使用して、最初の楕円のすぐ下にもう 1 つ楕円を画面に描画します。

[Visual Basic, C#] 下の楕円は水平方向に拡大され、新しい形状に合わせてグラデーションも拡大されます。

 
Public Sub MultiplyTransformExample(e As PaintEventArgs)
' Create a LinearGradientBrush.
Dim myRect As New Rectangle(20, 20, 200, 100)
Dim myLGBrush As New LinearGradientBrush(myRect, Color.Blue, _
Color.Red, 0F, True)
' Draw an ellipse to the screen using the LinearGradientBrush.
e.Graphics.FillEllipse(myLGBrush, myRect)
' Transform the LinearGradientBrush.
Dim transformArray As Point() =  {New Point(20, 150), _
New Point(400, 150), New Point(20, 200)}
Dim myMatrix As New Matrix(myRect, transformArray)
myLGBrush.MultiplyTransform(myMatrix, MatrixOrder.Prepend)
' Draw a second ellipse to the screen using the transformed brush.
e.Graphics.FillEllipse(myLGBrush, 20, 150, 380, 50)
End Sub
        
[C#] 
private void MultiplyTransformExample(PaintEventArgs e)
{
// Create a LinearGradientBrush.
Rectangle myRect = new Rectangle(20, 20, 200, 100);
LinearGradientBrush myLGBrush = new LinearGradientBrush(
myRect,
Color.Blue,
Color.Red,
0.0f,
true);
// Draw an ellipse to the screen using the LinearGradientBrush.
e.Graphics.FillEllipse(myLGBrush, myRect);
// Transform the LinearGradientBrush.
Point[] transformArray =
{
new Point(20, 150),
new Point(400,150),
new Point(20, 200)
};
Matrix myMatrix = new Matrix(myRect, transformArray);
myLGBrush.MultiplyTransform(
myMatrix,
MatrixOrder.Prepend);
// Draw a second ellipse to the screen using
// the transformed brush.
e.Graphics.FillEllipse(myLGBrush, 20, 150, 380, 50);
}
        

[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 ファミリ

参照

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