LinearGradientBrush.SetBlendTriangularShape メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
中心の色と両端の単一の色への直線的なフォールオフを持つ線形グラデーションを作成します。
オーバーロード
SetBlendTriangularShape(Single) |
中心の色と両端の単一の色への直線的なフォールオフを持つ線形グラデーションを作成します。 |
SetBlendTriangularShape(Single, Single) |
中心の色と両端の単一の色への直線的なフォールオフを持つ線形グラデーションを作成します。 |
SetBlendTriangularShape(Single)
中心の色と両端の単一の色への直線的なフォールオフを持つ線形グラデーションを作成します。
public:
void SetBlendTriangularShape(float focus);
public void SetBlendTriangularShape (float focus);
member this.SetBlendTriangularShape : single -> unit
Public Sub SetBlendTriangularShape (focus As Single)
パラメーター
- focus
- Single
グラデーションの中心 (グラデーションが終了色のみで構成されるポイント) を指定する 0 から 1 までの値。
例
例については、SetBlendTriangularShapeを参照してください。
注釈
このメソッドは、グラデーションが終了色のみで構成されるポイントである focus
を指定します。
focus
パラメータは、グラデーション線に沿った距離の比率として位置を表します。 グラデーションは、どちらの側にも直線的に開始色に落ちます。
適用対象
SetBlendTriangularShape(Single, Single)
中心の色と両端の単一の色への直線的なフォールオフを持つ線形グラデーションを作成します。
public:
void SetBlendTriangularShape(float focus, float scale);
public void SetBlendTriangularShape (float focus, float scale);
member this.SetBlendTriangularShape : single * single -> unit
Public Sub SetBlendTriangularShape (focus As Single, scale As Single)
パラメーター
- focus
- Single
グラデーションの中心 (グラデーションが終了色のみで構成されるポイント) を指定する 0 から 1 までの値。
- scale
- Single
開始色から focus
(終了色) までの色の減衰速度を指定する 0 ~ 1 の値
例
次のコード例は、Windows フォームで使用できるように設計されており、OnPaint イベント オブジェクトである PaintEventArgse
が必要です。 このコードは、次のアクションを実行します。
新しい LinearGradientBrushを作成します。
このブラシを使用して、色の線状の左から右に遷移する楕円を画面に描画します。
LinearGradientBrush を中心にピークを持つ三角形の図形に変換します。
変換されたブラシを使用して、画面に 2 つ目の楕円を描画します。
下の楕円のグラデーションが青から赤に遷移し、青色に戻ります。
private:
void SetBlendTriangularShapeExample( PaintEventArgs^ e )
{
// Create a LinearGradientBrush.
Rectangle myRect = Rectangle(20,20,200,100);
LinearGradientBrush^ myLGBrush = gcnew LinearGradientBrush( myRect,Color::Blue,Color::Red,0.0f,true );
// Draw an ellipse to the screen using the LinearGradientBrush.
e->Graphics->FillEllipse( myLGBrush, myRect );
// Create a triangular shaped brush with the peak at the center
// of the drawing area.
myLGBrush->SetBlendTriangularShape( .5f, 1.0f );
// Use the triangular brush to draw a second ellipse.
myRect.Y = 150;
e->Graphics->FillEllipse( myLGBrush, myRect );
}
private void SetBlendTriangularShapeExample(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);
// Create a triangular shaped brush with the peak at the center
// of the drawing area.
myLGBrush.SetBlendTriangularShape(.5f, 1.0f);
// Use the triangular brush to draw a second ellipse.
myRect.Y = 150;
e.Graphics.FillEllipse(myLGBrush, myRect);
}
Public Sub SetBlendTriangularShapeExample(ByVal 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, 0.0F, True)
' Draw an ellipse to the screen using the LinearGradientBrush.
e.Graphics.FillEllipse(myLGBrush, myRect)
' Create a triangular shaped brush with the peak at the center
' of the drawing area.
myLGBrush.SetBlendTriangularShape(0.5F, 1.0F)
' Use the triangular brush to draw a second ellipse.
myRect.Y = 150
e.Graphics.FillEllipse(myLGBrush, myRect)
End Sub
注釈
このメソッドは、グラデーションが終了色のみで構成されるポイントである focus
を指定します。
focus
パラメータは、グラデーション線に沿った距離の比率として位置を表します。 グラデーションは、どちらの側にも直線的に開始色に落ちます。
適用対象
.NET