TranslateTransform Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the TranslateTransform class.
Overloads
TranslateTransform() |
Initializes a new instance of the TranslateTransform class. |
TranslateTransform(Double, Double) |
Initializes a new instance of the TranslateTransform class and specifies the displacements in the direction of the x- and y- axes. |
TranslateTransform()
Initializes a new instance of the TranslateTransform class.
public:
TranslateTransform();
public TranslateTransform ();
Public Sub New ()
Applies to
TranslateTransform(Double, Double)
Initializes a new instance of the TranslateTransform class and specifies the displacements in the direction of the x- and y- axes.
public:
TranslateTransform(double offsetX, double offsetY);
public TranslateTransform (double offsetX, double offsetY);
new System.Windows.Media.TranslateTransform : double * double -> System.Windows.Media.TranslateTransform
Public Sub New (offsetX As Double, offsetY As Double)
Parameters
- offsetX
- Double
The displacement in the direction of the x-axis.
- offsetY
- Double
The displacement in the direction of the y-axis.