Implemented interface member:
property
Scale
Microsoft.Maui.ITransform.Scale
1 write to Scale
Microsoft.Maui.Controls (1)
ViewExtensions.cs (1)
211 return AnimateTo(view, view.Scale, scale, nameof(ScaleTo), (v, value) => v.Scale = value, length, easing);
5 references to Scale
Microsoft.Maui.Controls (5)
ViewExtensions.cs (2)
140 return view.ScaleTo(view.Scale + dscale, length, easing); 211 return AnimateTo(view, view.Scale, scale, nameof(ScaleTo), (v, value) => v.Scale = value, length, easing);
VisualElement\VisualElement.cs (3)
89 /// <summary>Bindable property for <see cref="Scale"/>.</summary> 90 public static readonly BindableProperty ScaleProperty = BindableProperty.Create(nameof(Scale), typeof(double), typeof(VisualElement), 1d); 816 /// <para><see cref="Scale"/> is applied relative to <see cref="AnchorX" /> and <see cref="AnchorY" />.</para>