SkewTransform Constructors

Definition

Overloads

Name Description
SkewTransform()

Initializes a new instance of the SkewTransform class.

SkewTransform(Double, Double)

Initializes a new instance of the SkewTransform class with the specified skew angles.

SkewTransform(Double, Double, Double, Double)

Initializes a new instance of the SkewTransform class with the specified skew angles and center point.

SkewTransform()

Source:
SkewTransform.cs
Source:
SkewTransform.cs
Source:
SkewTransform.cs
Source:
SkewTransform.cs

Initializes a new instance of the SkewTransform class.

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

Applies to

SkewTransform(Double, Double)

Source:
SkewTransform.cs
Source:
SkewTransform.cs
Source:
SkewTransform.cs
Source:
SkewTransform.cs

Initializes a new instance of the SkewTransform class with the specified skew angles.

public:
 SkewTransform(double angleX, double angleY);
public SkewTransform(double angleX, double angleY);
new Microsoft.Maui.Controls.Shapes.SkewTransform : double * double -> Microsoft.Maui.Controls.Shapes.SkewTransform
Public Sub New (angleX As Double, angleY As Double)

Parameters

angleX
Double

The x-axis skew angle in degrees.

angleY
Double

The y-axis skew angle in degrees.

Applies to

SkewTransform(Double, Double, Double, Double)

Source:
SkewTransform.cs
Source:
SkewTransform.cs
Source:
SkewTransform.cs
Source:
SkewTransform.cs

Initializes a new instance of the SkewTransform class with the specified skew angles and center point.

public:
 SkewTransform(double angleX, double angleY, double centerX, double centerY);
public SkewTransform(double angleX, double angleY, double centerX, double centerY);
new Microsoft.Maui.Controls.Shapes.SkewTransform : double * double * double * double -> Microsoft.Maui.Controls.Shapes.SkewTransform
Public Sub New (angleX As Double, angleY As Double, centerX As Double, centerY As Double)

Parameters

angleX
Double

The x-axis skew angle in degrees.

angleY
Double

The y-axis skew angle in degrees.

centerX
Double

The x-coordinate of the skew center point.

centerY
Double

The y-coordinate of the skew center point.

Applies to