Class RadTranslateTransform
Represents a translation transformation that can be applied to elements.
Namespace: Telerik.Maui.Controls
Assembly: Telerik.Maui.Controls.dll
Syntax
public class RadTranslateTransform : RadTransform, INotifyPropertyChanged
Constructors
RadTranslateTransform()
Initializes a new instance of the RadTranslateTransform class.
Declaration
public RadTranslateTransform()
RadTranslateTransform(Double, Double)
Initializes a new instance of the RadTranslateTransform class with the specified translation values.
Declaration
public RadTranslateTransform(double x, double y)
Parameters
System.Double
x
The X translation value. |
System.Double
y
The Y translation value. |
Properties
X
Gets or sets the X translation value.
Declaration
public double X { get; set; }
Property Value
System.Double
The distance to translate along the X-axis. |
Y
Gets or sets the Y translation value.
Declaration
public double Y { get; set; }
Property Value
System.Double
The distance to translate along the Y-axis. |