Class
RadScaleTransform

Represents a scale transformation that scales an object uniformly or non-uniformly along the x and y axes.

Definition

Namespace:Telerik.Maui.Controls

Assembly:Telerik.Maui.Controls.dll

Syntax:

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

Inheritance: objectRadTransformRadScaleTransform

Implements: INotifyPropertyChanged

Inherited Members RadTransform.OnPropertyChanged(string)RadTransform.PropertyChanged

Constructors

RadScaleTransform()

Initializes a new instance of the RadScaleTransform class.

Declaration

cs-api-definition
public RadScaleTransform()

RadScaleTransform(double, double)

Initializes a new instance of the RadScaleTransform class with the specified scale factors.

Declaration

cs-api-definition
public RadScaleTransform(double scaleX, double scaleY)

Parameters

scaleX

double

The scale factor along the x-axis.

scaleY

double

The scale factor along the y-axis.

RadScaleTransform(double, double, double, double)

Initializes a new instance of the RadScaleTransform class with the specified scale factors and center point.

Declaration

cs-api-definition
public RadScaleTransform(double scaleX, double scaleY, double centerX, double centerY)

Parameters

scaleX

double

The scale factor along the x-axis.

scaleY

double

The scale factor along the y-axis.

centerX

double

The x-coordinate of the center point of the transformation.

centerY

double

The y-coordinate of the center point of the transformation.

Properties

CenterX

The center X-coordinate of this transformation measured in pixels.

Declaration

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

Property Value

double

CenterY

The center Y-coordinate of this transformation measured in pixels.

Declaration

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

Property Value

double

ScaleX

Gets or sets the scale factor along the x-axis.

Declaration

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

Property Value

double

ScaleY

Gets or sets the scale factor along the y-axis.

Declaration

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

Property Value

double