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

Represents a translation transformation that can be applied to elements.

Definition

Namespace:Telerik.Maui.Controls

Assembly:Telerik.Maui.Controls.dll

Syntax:

C#
public class RadTranslateTransform : RadTransform, INotifyPropertyChanged

Inheritance: objectRadTransformRadTranslateTransform

Implements: INotifyPropertyChanged

Inherited Members RadTransform.OnPropertyChanged(string)RadTransform.PropertyChanged

Constructors

Initializes a new instance of the RadTranslateTransform class.

C#
public RadTranslateTransform()

Initializes a new instance of the RadTranslateTransform class with the specified translation values.

C#
public RadTranslateTransform(double x, double y)
Parameters:xdouble

The X translation value.

ydouble

The Y translation value.

Properties

Gets or sets the X translation value.

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

The distance to translate along the X-axis.

Gets or sets the Y translation value.

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

The distance to translate along the Y-axis.