3 writes to Right
Microsoft.Maui (1)
Primitives\Thickness.cs (1)
51 Right = right;
Microsoft.Maui.Controls (2)
PaddingElement.cs (1)
54 padding.Right = (double)newValue;
View\View.cs (1)
70 margin.Right = (double)newValue;
29 references to Right
Microsoft.Maui (19)
Animations\AnimationLerpingExtensions.cs (2)
55 start.Right.Lerp(end.Right, progress),
Converters\ThicknessTypeConverter.cs (1)
99 $"{t.Right.ToString(CultureInfo.InvariantCulture)}, {t.Bottom.ToString(CultureInfo.InvariantCulture)}";
Layouts\LayoutExtensions.cs (1)
87 return AlignHorizontal(bounds.X, margin.Left, margin.Right, bounds.Width, desiredWidth, alignment);
Primitives\Thickness.cs (10)
26 public double HorizontalThickness => Left + Right; 32 public bool IsEmpty => Left == 0 && Top == 0 && Right == 0 && Bottom == 0; 34 public bool IsNaN => double.IsNaN(Left) && double.IsNaN(Top) && double.IsNaN(Right) && double.IsNaN(Bottom); 67 return Left.Equals(other.Left) && Top.Equals(other.Top) && Right.Equals(other.Right) && Bottom.Equals(other.Bottom); 85 hashCode = (hashCode * 397) ^ Right.GetHashCode(); 106 right = Right; 113 new Thickness(left.Left + addend, left.Top + addend, left.Right + addend, left.Bottom + addend); 116 new Thickness(left.Left + right.Left, left.Top + right.Top, left.Right + right.Right, left.Bottom + right.Bottom);
VisualDiagnostics\AdornerModel.cs (5)
57 if (!Tolerances.NearZero(margin.Right)) 60 rc.Left = Math.Min(rect.Right, rect.Right + margin.Right); 61 rc.Width = Math.Abs(margin.Right); 72 rc.Right = rect.Right + Math.Max(0, margin.Right); 83 rc.Right = rect.Right + Math.Max(0, margin.Right);
Microsoft.Maui.Controls (5)
LegacyLayouts\FlexLayout.cs (2)
382 item.MarginRight = (float)margin.Right; 396 item.PaddingRight = (float)padding.Right;
Page\Page.cs (1)
425 area.Y += Padding.Right;
Region.cs (2)
88 return Inflate(_inflation.Value.Left * -1, _inflation.Value.Top * -1, _inflation.Value.Right * -1, _inflation.Value.Bottom * -1); 120 _inflation == null ? right : right + _inflation.Value.Right,
Microsoft.Maui.Controls.Compatibility (5)
iOS\CollectionView\CarouselViewLayout.cs (2)
23 var width = size.Width - _carouselView.PeekAreaInsets.Left - _carouselView.PeekAreaInsets.Right; 48 var right = insets.Right + (float)_carouselView.PeekAreaInsets.Right;
iOS\Renderers\ButtonLayoutManager.cs (1)
298 (nfloat)_element.Padding.Right + defaultPadding.Right + adjustments.Right);
iOS\Renderers\ImageButtonRenderer.cs (1)
107 (float)(Element.Padding.Right)
iOS\Renderers\LabelRenderer.cs (1)
689 (float)Element.Padding.Right);