LinearGradientBrush.RotateTransform Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Gira a transformação geométrica local pela quantidade especificada. Esse método prepara a rotação para a transformação.
Sobrecargas
RotateTransform(Single) |
Gira a transformação geométrica local pela quantidade especificada. Esse método prepara a rotação para a transformação. |
RotateTransform(Single, MatrixOrder) |
Gira a transformação geométrica local pela quantidade especificada na ordem especificada. |
RotateTransform(Single)
- Origem:
- LinearGradientBrush.cs
- Origem:
- LinearGradientBrush.cs
- Origem:
- LinearGradientBrush.cs
- Origem:
- LinearGradientBrush.cs
- Origem:
- LinearGradientBrush.cs
Gira a transformação geométrica local pela quantidade especificada. Esse método prepara a rotação para a transformação.
public:
void RotateTransform(float angle);
public void RotateTransform (float angle);
member this.RotateTransform : single -> unit
Public Sub RotateTransform (angle As Single)
Parâmetros
- angle
- Single
O ângulo de rotação.
Exemplos
Para obter um exemplo, consulte RotateTransform.
Aplica-se a
RotateTransform(Single, MatrixOrder)
- Origem:
- LinearGradientBrush.cs
- Origem:
- LinearGradientBrush.cs
- Origem:
- LinearGradientBrush.cs
- Origem:
- LinearGradientBrush.cs
- Origem:
- LinearGradientBrush.cs
Gira a transformação geométrica local pela quantidade especificada na ordem especificada.
public:
void RotateTransform(float angle, System::Drawing::Drawing2D::MatrixOrder order);
public void RotateTransform (float angle, System.Drawing.Drawing2D.MatrixOrder order);
member this.RotateTransform : single * System.Drawing.Drawing2D.MatrixOrder -> unit
Public Sub RotateTransform (angle As Single, order As MatrixOrder)
Parâmetros
- angle
- Single
O ângulo de rotação.
- order
- MatrixOrder
Um MatrixOrder que especifica se a matriz de rotação deve ser acrescentada ou anexada.
Exemplos
O exemplo de código a seguir foi projetado para uso com o Windows Forms e requer PaintEventArgse
, um objeto de evento OnPaint. O código
Cria um novo LinearGradientBrush.
Desenha uma elipse na tela usando esse pincel.
Gira o LinearGradientBrush 45 graus chamando o método RotateTransform.
Desenha uma elipse para a tela diretamente abaixo da primeira elipse, usando o pincel girado.
Observe que o gradiente da elipse inferior está em um ângulo de 45 graus até o eixo x da elipse superior. Observe também que uma chamada para o método TranslateTransform é usada para justificar a borda esquerda do preenchimento de gradiente com a borda esquerda da elipse inferior.
private:
void RotateTransformExample( 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 );
// Rotate the LinearGradientBrush.
myLGBrush->RotateTransform( 45.0f, MatrixOrder::Prepend );
// Rejustify the brush to start at the left edge of the ellipse.
myLGBrush->TranslateTransform( -100.0f, 0.0f );
// Draw a second ellipse to the screen using
// the transformed brush.
e->Graphics->FillEllipse( myLGBrush, 20, 150, 200, 100 );
}
private void RotateTransformExample(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);
// Rotate the LinearGradientBrush.
myLGBrush.RotateTransform(45.0f, MatrixOrder.Prepend);
// Rejustify the brush to start at the left edge of the ellipse.
myLGBrush.TranslateTransform(-100.0f, 0.0f);
// Draw a second ellipse to the screen using
// the transformed brush.
e.Graphics.FillEllipse(myLGBrush, 20, 150, 200, 100);
}
Public Sub RotateTransformExample(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)
' Rotate the LinearGradientBrush.
myLGBrush.RotateTransform(45.0F, MatrixOrder.Prepend)
' Rejustify the brush to start at the left edge of the ellipse.
myLGBrush.TranslateTransform(-100.0F, 0.0F)
' Draw a second ellipse to the screen using the transformed brush.
e.Graphics.FillEllipse(myLGBrush, 20, 150, 200, 100)
End Sub