Class
RotateTransform

Definition

Namespace:Telerik.WinControls.UI.Diagrams

Assembly:Telerik.WinControls.RadDiagram.dll

Syntax:

cs-api-definition
public sealed class RotateTransform : Transform

Inheritance: objectTransformRotateTransform

Inherited Members Transform.TransformBounds(Rect)Transform.TryTransform(Point, out Point)Transform.TransformPoint(Point)Transform.IdentityTransform.Inverse

Constructors

RotateTransform()

Initializes a new instance of the class.

Declaration

cs-api-definition
public RotateTransform()

RotateTransform(double)

Initializes a new instance of the class that has the specified angle, in degrees, of clockwise rotation. The rotation is centered on the origin, (0,0).

Declaration

cs-api-definition
public RotateTransform(double angle)

Parameters

angle

double

The clockwise rotation angle, in degrees.

RotateTransform(double, double, double)

Initializes a new instance of the class that has the specified angle and center point.

Declaration

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

Parameters

angle

double

The clockwise rotation angle, in degrees. For more information, see the property.

centerX

double

The x-coordinate of the center point for the . For more information, see the property.

centerY

double

The y-coordinate of the center point for the . For more information, see the property.

Properties

Angle

Gets or sets the angle, in degrees, of clockwise rotation.

Declaration

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

Property Value

double

The angle, in degrees, of clockwise rotation. The default is 0.

CenterX

Gets or sets the x-coordinate of the rotation center point.

Declaration

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

Property Value

double

The x-coordinate of the center of rotation. The default is 0.

CenterY

Gets or sets the y-coordinate of the rotation center point.

Declaration

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

Property Value

double

The y-coordinate of the center of rotation. The default is 0.

Value

Gets the current rotation transformation as a Matrix object.

Declaration

cs-api-definition
public override Matrix Value { get; }

Property Value

Matrix

The current rotation transformation as a Matrix.

Overrides Transform.Value

Methods

CreateInstanceCore()

Declaration

cs-api-definition
public Transform CreateInstanceCore()

Returns

Transform