Class
RadTranslateTransform

Represents a translation transformation that can be applied to elements.

Definition

Namespace:Telerik.Maui.Controls

Assembly:Telerik.Maui.Controls.dll

Syntax:

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

Inheritance: objectRadTransformRadTranslateTransform

Implements: INotifyPropertyChanged

Inherited Members RadTransform.OnPropertyChanged(string)RadTransform.PropertyChanged

Constructors

RadTranslateTransform()

Initializes a new instance of the RadTranslateTransform class.

Declaration

cs-api-definition
public RadTranslateTransform()

RadTranslateTransform(double, double)

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

Declaration

cs-api-definition
public RadTranslateTransform(double x, double y)

Parameters

x

double

The X translation value.

y

double

The Y translation value.

Properties

X

Gets or sets the X translation value.

Declaration

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

Property Value

double

The distance to translate along the X-axis.

Y

Gets or sets the Y translation value.

Declaration

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

Property Value

double

The distance to translate along the Y-axis.