New to Telerik UI for .NET MAUIStart a free 30-day trial

Represents a rotation transformation that can be applied to elements.

Definition

Namespace:Telerik.Maui.Controls

Assembly:Telerik.Maui.Controls.dll

Syntax:

C#
public class RadRotateTransform : RadTransform, INotifyPropertyChanged

Inheritance: objectRadTransformRadRotateTransform

Implements: INotifyPropertyChanged

Inherited Members RadTransform.OnPropertyChanged(string)RadTransform.PropertyChanged

Constructors

Initializes a new instance of the RadRotateTransform class.

C#
public RadRotateTransform()

Initializes a new instance of the RadRotateTransform class with the specified center point and angle.

C#
public RadRotateTransform(double centerX, double centerY, double angle)
Parameters:centerXdouble

The X coordinate of the center point for the rotation.

centerYdouble

The Y coordinate of the center point for the rotation.

angledouble

The rotation angle in degrees.

Properties

Gets or sets the rotation angle in degrees.

C#
public double Angle { get; set; }
Property Value:

The rotation angle in degrees.

Gets or sets the X coordinate of the center point for the rotation.

C#
public double CenterX { get; set; }
Property Value:

The X coordinate of the rotation center point.

Gets or sets the Y coordinate of the center point for the rotation.

C#
public double CenterY { get; set; }
Property Value:

The Y coordinate of the rotation center point.