Implemented interface member:
property
RotationY
Microsoft.Maui.ITransform.RotationY
1 write to RotationY
Microsoft.Maui.Controls (1)
ViewExtensions.cs (1)
194 return AnimateTo(view, view.RotationY, rotation, nameof(RotateYTo), (v, value) => v.RotationY = value, length, easing);
4 references to RotationY
Microsoft.Maui.Controls (3)
ViewExtensions.cs (1)
194 return AnimateTo(view, view.RotationY, rotation, nameof(RotateYTo), (v, value) => v.RotationY = value, length, easing);
VisualElement\VisualElement.cs (2)
82 /// <summary>Bindable property for <see cref="RotationY"/>.</summary> 83 public static readonly BindableProperty RotationYProperty = BindableProperty.Create(nameof(RotationY), typeof(double), typeof(VisualElement), default(double));
Microsoft.Maui.Controls.Compatibility (1)
Tizen\Renderers\VisualElementRenderer.cs (1)
840 var rotationY = Element.RotationY;