Class
RadRotateTransform

Represents a rotation transformation that can be applied to elements.

Definition

Namespace:Telerik.Maui.Controls

Assembly:Telerik.Maui.Controls.dll

Syntax:

cs-api-definition
public class RadRotateTransform : RadTransform, INotifyPropertyChanged

Inheritance: objectRadTransformRadRotateTransform

Implements: INotifyPropertyChanged

Inherited Members RadTransform.OnPropertyChanged(string)RadTransform.PropertyChanged

Constructors

RadRotateTransform()

Initializes a new instance of the RadRotateTransform class.

Declaration

cs-api-definition
public RadRotateTransform()

RadRotateTransform(double, double, double)

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

Declaration

cs-api-definition
public RadRotateTransform(double centerX, double centerY, double angle)

Parameters

centerX

double

The X coordinate of the center point for the rotation.

centerY

double

The Y coordinate of the center point for the rotation.

angle

double

The rotation angle in degrees.

Properties

Angle

Gets or sets the rotation angle in degrees.

Declaration

cs-api-definition
public double Angle { get; set; }

Property Value

double

The rotation angle in degrees.

CenterX

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

Declaration

cs-api-definition
public double CenterX { get; set; }

Property Value

double

The X coordinate of the rotation center point.

CenterY

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

Declaration

cs-api-definition
public double CenterY { get; set; }

Property Value

double

The Y coordinate of the rotation center point.