17 references to VerticallyFixed
Microsoft.Maui.Controls (17)
ContentPresenter.cs (2)
77 bool isFixedVertically = (Constraint & LayoutConstraint.VerticallyFixed) != 0; 81 result |= LayoutConstraint.VerticallyFixed;
Label\Label.cs (1)
438 var isVerticallySizeable = (constraint & LayoutConstraint.VerticallyFixed) == 0;
LayoutConstraint.cs (1)
11 Fixed = HorizontallyFixed | VerticallyFixed
LegacyLayouts\AbsoluteLayout.cs (3)
130 result = Constraint & LayoutConstraint.VerticallyFixed; 139 result |= LayoutConstraint.VerticallyFixed; 146 result |= LayoutConstraint.VerticallyFixed;
LegacyLayouts\Grid.cs (2)
200 if ((Constraint & LayoutConstraint.VerticallyFixed) == 0 && height.IsStar) 208 result |= LayoutConstraint.VerticallyFixed;
LegacyLayouts\StackLayout.cs (2)
363 if ((Constraint & LayoutConstraint.VerticallyFixed) != 0 && view.VerticalOptions.Alignment == LayoutAlignment.Fill) 371 view.ComputedConstraint = LayoutConstraint.VerticallyFixed;
ScrollView\ScrollView.cs (2)
328 if (vOptions.Alignment == LayoutAlignment.Fill && (Constraint & LayoutConstraint.VerticallyFixed) != 0) 330 view.ComputedConstraint = LayoutConstraint.VerticallyFixed;
TemplatedPage.cs (1)
33 result |= LayoutConstraint.VerticallyFixed;
TemplatedView\TemplatedView.cs (2)
68 bool isFixedVertically = (Constraint & LayoutConstraint.VerticallyFixed) != 0; 72 result |= LayoutConstraint.VerticallyFixed;
VisualElement\VisualElement.cs (1)
1699 constraint |= LayoutConstraint.VerticallyFixed;