Implemented interface member:
property
RotationX
Microsoft.Maui.ITransform.RotationX
1 write to RotationX
Microsoft.Maui.Controls (1)
ViewExtensions.cs (1)
176 return AnimateTo(view, view.RotationX, rotation, nameof(RotateXTo), (v, value) => v.RotationX = value, length, easing);
4 references to RotationX
Microsoft.Maui.Controls (3)
ViewExtensions.cs (1)
176 return AnimateTo(view, view.RotationX, rotation, nameof(RotateXTo), (v, value) => v.RotationX = value, length, easing);
VisualElement\VisualElement.cs (2)
79 /// <summary>Bindable property for <see cref="RotationX"/>.</summary> 80 public static readonly BindableProperty RotationXProperty = BindableProperty.Create(nameof(RotationX), typeof(double), typeof(VisualElement), default(double));
Microsoft.Maui.Controls.Compatibility (1)
Tizen\Renderers\VisualElementRenderer.cs (1)
839 var rotationX = Element.RotationX;