RotateTransform.CenterX Property
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.
Gets or sets the x-coordinate of the rotation center point for this transformation.
public:
property double CenterX { double get(); void set(double value); };
double CenterX();
void CenterX(double value);
public double CenterX { get; set; }
var double = rotateTransform.centerX;
rotateTransform.centerX = double;
Public Property CenterX As Double
<RotateTransform CenterX="double"/>
Property Value
double
The x-coordinate of the center of rotation, in pixels within the transform's frame of reference. The default is 0.
Remarks
When a RotateTransform is applied as the RenderTransform for a UIElement, the RenderTransformOrigin can also affect how the transformation behaves. In particular this affects the center point that the UIElement rotates around. For more info, see Remarks in RotateTransform.