3 writes to Bottom
Microsoft.Maui (1)
Primitives\Thickness.cs (1)
52 Bottom = bottom;
Microsoft.Maui.Controls (2)
PaddingElement.cs (1)
66 padding.Bottom = (double)newValue;
View\View.cs (1)
82 margin.Bottom = (double)newValue;
25 references to Bottom
Microsoft.Maui (16)
Animations\AnimationLerpingExtensions.cs (2)
56 start.Bottom.Lerp(end.Bottom, progress)
Converters\ThicknessTypeConverter.cs (1)
99 $"{t.Right.ToString(CultureInfo.InvariantCulture)}, {t.Bottom.ToString(CultureInfo.InvariantCulture)}";
Primitives\Thickness.cs (10)
29 public double VerticalThickness => Top + Bottom; 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); 86 hashCode = (hashCode * 397) ^ Bottom.GetHashCode(); 107 bottom = Bottom; 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 (3)
79 if (!Tolerances.NearZero(margin.Bottom)) 84 rc.Top = Math.Min(rect.Bottom + margin.Bottom, rect.Bottom); 85 rc.Height = Math.Abs(margin.Bottom);
Microsoft.Maui.Controls (4)
LegacyLayouts\FlexLayout.cs (2)
383 item.MarginBottom = (float)margin.Bottom; 397 item.PaddingBottom = (float)padding.Bottom;
Region.cs (2)
88 return Inflate(_inflation.Value.Left * -1, _inflation.Value.Top * -1, _inflation.Value.Right * -1, _inflation.Value.Bottom * -1); 121 _inflation == null ? bottom : bottom + _inflation.Value.Bottom);
Microsoft.Maui.Controls.Compatibility (5)
iOS\CollectionView\CarouselViewLayout.cs (2)
24 var height = size.Height - _carouselView.PeekAreaInsets.Top - _carouselView.PeekAreaInsets.Bottom; 50 var bottom = insets.Bottom + (float)_carouselView.PeekAreaInsets.Bottom;
iOS\Renderers\ButtonLayoutManager.cs (1)
297 (nfloat)_element.Padding.Bottom + defaultPadding.Bottom + adjustments.Bottom,
iOS\Renderers\ImageButtonRenderer.cs (1)
106 (float)(Element.Padding.Bottom),
iOS\Renderers\LabelRenderer.cs (1)
688 (float)Element.Padding.Bottom,