SkewTransform Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the SkewTransform class.
Overloads
SkewTransform() |
Initializes a new instance of the SkewTransform class. |
SkewTransform(Double, Double) |
Initializes a new instance of the SkewTransform class that has the specified x- and y-axes angles and is centered on the origin. |
SkewTransform(Double, Double, Double, Double) |
Initializes a new instance of the SkewTransform class that has the specified x- and y-axes angles and center. |
SkewTransform()
Initializes a new instance of the SkewTransform class.
public:
SkewTransform();
public SkewTransform ();
Public Sub New ()
Applies to
SkewTransform(Double, Double)
Initializes a new instance of the SkewTransform class that has the specified x- and y-axes angles and is centered on the origin.
public:
SkewTransform(double angleX, double angleY);
public SkewTransform (double angleX, double angleY);
new System.Windows.Media.SkewTransform : double * double -> System.Windows.Media.SkewTransform
Public Sub New (angleX As Double, angleY As Double)
Parameters
- angleX
- Double
The x-axis skew angle, which is measured in degrees counterclockwise from the y-axis. For more information, see the AngleX property.
- angleY
- Double
The y-axis skew angle, which is measured in degrees counterclockwise from the x-axis. For more information, see the AngleY property.
Applies to
SkewTransform(Double, Double, Double, Double)
Initializes a new instance of the SkewTransform class that has the specified x- and y-axes angles and center.
public:
SkewTransform(double angleX, double angleY, double centerX, double centerY);
public SkewTransform (double angleX, double angleY, double centerX, double centerY);
new System.Windows.Media.SkewTransform : double * double * double * double -> System.Windows.Media.SkewTransform
Public Sub New (angleX As Double, angleY As Double, centerX As Double, centerY As Double)
Parameters
- angleX
- Double
The x-axis skew angle, which is measured in degrees counterclockwise from the y-axis. For more information, see the AngleX property.
- angleY
- Double
The y-axis skew angle, which is measured in degrees counterclockwise from the x-axis. For more information, see the AngleY property.
- centerX
- Double
The x-coordinate of the transform center. For more information, see the CenterX property.
- centerY
- Double
The y-coordinate of the transform center. For more information, see the CenterY property.