Class ScaleTransform
Scales an object in the 2-D x-y coordinate system.
Inherited Members
Namespace: Telerik.WinControls.Spreadsheet.UI
Assembly: Telerik.WinControls.RadSpreadsheet.dll
Syntax
public class ScaleTransform : RenderTransform, INotifyPropertyChanged
Constructors
ScaleTransform()
Declaration
public ScaleTransform()
Properties
CenterX
Gets or sets the x-coordinate of the center point of this ScaleTransform.
Declaration
public double CenterX { get; set; }
Property Value
System.Double
|
CenterY
Gets or sets the y-coordinate of the center point of this ScaleTransform.
Declaration
public double CenterY { get; set; }
Property Value
System.Double
|
ScaleX
Gets or sets the x-axis scale factor.
Declaration
public double ScaleX { get; set; }
Property Value
System.Double
|
ScaleY
Gets or sets the y-axis scale factor.
Declaration
public double ScaleY { get; set; }
Property Value
System.Double
|
Methods
Transform(Double)
Transforms the specified size.
Declaration
public double Transform(double size)
Parameters
System.Double
size
The size to transform. |
Returns
System.Double
The result of transforming size. |
Transform(Point)
Transforms the specified point.
Declaration
public Point Transform(Point point)
Parameters
Point
point
The point to transform. |
Returns
Point
The result of transforming point. |
Transform(Size)
Transforms the specified size.
Declaration
public Size Transform(Size size)
Parameters
Size
size
The size to transform. |
Returns
Size
The result of transforming size. |