UILayoutPriority Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
An enumeration of values used by flow layouts to prioritize constraints.
[ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All, null)]
public enum UILayoutPriority
type UILayoutPriority =
- Inheritance
-
UILayoutPriority
- Attributes
Fields
Name | Value | Description |
---|---|---|
FittingSizeLevel | 50 | Generally not used; the priority at which a view wants to conform to the value of UIView.SystemLayoutSizeFitting. |
DefaultLow | 250 | The priority at which a button hugs its content horizontally. |
DefaultHigh | 750 | The resistance by which a button resists compressing its content. |
Required | 1000 | Indicates a required constraint. The underlying value of this is 1000. |
Remarks
Higher values are considered more important by the flow layout constraint engine. Application developers should not specify a layout priority greater than the value of Required