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);
8 references to Scale
Microsoft.Maui.Controls (6)
Platform\Tizen\PinchGestureHandler.cs (1)
28
_pinchStartingScale = View!.
Scale
;
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);
849
/// <para><see cref="
Scale
"/> is applied relative to <see cref="AnchorX" /> and <see cref="AnchorY" />.</para>
Microsoft.Maui.Controls.Compatibility (2)
iOS\EventTracker.cs (1)
343
startingScale = view.
Scale
;
iOS\VisualElementTracker.cs (1)
206
var scale = (float)view.
Scale
;