Class RadRotateTransform
Represents a rotation transformation that can be applied to elements.
Namespace: Telerik.Maui.Controls
Assembly: Telerik.Maui.Controls.dll
Syntax
public class RadRotateTransform : RadTransform, INotifyPropertyChanged
Constructors
RadRotateTransform()
RadRotateTransform(Double, Double, Double)
Initializes a new instance of the RadRotateTransform class with the specified center point and angle.
Declaration
public RadRotateTransform(double centerX, double centerY, double angle)
Parameters
System.Double
centerX
The X coordinate of the center point for the rotation. |
System.Double
centerY
The Y coordinate of the center point for the rotation. |
System.Double
angle
The rotation angle in degrees. |
Properties
Angle
Gets or sets the rotation angle in degrees.
Declaration
public double Angle { get; set; }
Property Value
System.Double
The rotation angle in degrees. |
CenterX
Gets or sets the X coordinate of the center point for the rotation.
Declaration
public double CenterX { get; set; }
Property Value
System.Double
The X coordinate of the rotation center point. |
CenterY
Gets or sets the Y coordinate of the center point for the rotation.
Declaration
public double CenterY { get; set; }
Property Value
System.Double
The Y coordinate of the rotation center point. |