Class RotateTransform
Inherited Members
Namespace: Telerik.WinControls.UI.Diagrams
Assembly: Telerik.WinControls.RadDiagram.dll
Syntax
public sealed class RotateTransform : Transform
Constructors
RotateTransform()
Initializes a new instance of the System.Windows.Media.RotateTransform class.
Declaration
public RotateTransform()
RotateTransform(Double)
Initializes a new instance of the System.Windows.Media.RotateTransform class that has the specified angle, in degrees, of clockwise rotation. The rotation is centered on the origin, (0,0).
Declaration
public RotateTransform(double angle)
Parameters
|
System.Double
angle
The clockwise rotation angle, in degrees. |
RotateTransform(Double, Double, Double)
Initializes a new instance of the System.Windows.Media.RotateTransform class that has the specified angle and center point.
Declaration
public RotateTransform(double angle, double centerX, double centerY)
Parameters
|
System.Double
angle
The clockwise rotation angle, in degrees. For more information, see the System.Windows.Media.RotateTransform.Angle property. |
|
System.Double
centerX
The x-coordinate of the center point for the System.Windows.Media.RotateTransform. For more information, see the System.Windows.Media.RotateTransform.CenterX property. |
|
System.Double
centerY
The y-coordinate of the center point for the System.Windows.Media.RotateTransform. For more information, see the System.Windows.Media.RotateTransform.CenterY property. |
Properties
Angle
Gets or sets the angle, in degrees, of clockwise rotation.
Declaration
public double Angle { get; set; }
Property Value
|
System.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
public double CenterX { get; set; }
Property Value
|
System.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
public double CenterY { get; set; }
Property Value
|
System.Double
The y-coordinate of the center of rotation. The default is 0. |
Value
Gets the current rotation transformation as a System.Windows.Media.Matrix object.
Declaration
public override Matrix Value { get; }
Property Value
|
Matrix
The current rotation transformation as a System.Windows.Media.Matrix. |