Sdílet prostřednictvím


RotateTransform Konstruktory

Definice

Inicializuje novou instanci RotateTransform třídy.

Přetížení

RotateTransform()

Inicializuje novou instanci RotateTransform třídy.

RotateTransform(Double)

Inicializuje novou instanci RotateTransform třídy, která má zadaný úhel otočení ve stupních po směru hodinových ručiček. Otočení je vycentrováno na počátku (0,0).

RotateTransform(Double, Double, Double)

Inicializuje novou instanci RotateTransform třídy, která má zadaný úhel a středový bod.

Poznámky

Úhel otočení po směru hodinových ručiček se měří ve stupních. Výchozí střed otáčení je počátek.

RotateTransform()

Inicializuje novou instanci RotateTransform třídy.

public:
 RotateTransform();
public RotateTransform ();
Public Sub New ()

Platí pro

RotateTransform(Double)

Inicializuje novou instanci RotateTransform třídy, která má zadaný úhel otočení ve stupních po směru hodinových ručiček. Otočení je vycentrováno na počátku (0,0).

public:
 RotateTransform(double angle);
public RotateTransform (double angle);
new System.Windows.Media.RotateTransform : double -> System.Windows.Media.RotateTransform
Public Sub New (angle As Double)

Parametry

angle
Double

Úhel otočení po směru hodinových ručiček ve stupních

Platí pro

RotateTransform(Double, Double, Double)

Inicializuje novou instanci RotateTransform třídy, která má zadaný úhel a středový bod.

public:
 RotateTransform(double angle, double centerX, double centerY);
public RotateTransform (double angle, double centerX, double centerY);
new System.Windows.Media.RotateTransform : double * double * double -> System.Windows.Media.RotateTransform
Public Sub New (angle As Double, centerX As Double, centerY As Double)

Parametry

angle
Double

Úhel otočení po směru hodinových ručiček ve stupních Další informace najdete ve Angle vlastnosti.

centerX
Double

Souřadnice x středového bodu pro RotateTransform. Další informace najdete ve CenterX vlastnosti.

centerY
Double

Souřadnice y středového bodu pro RotateTransform. Další informace najdete ve CenterY vlastnosti.

Platí pro