ContentCoordinateRoundingMode 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.
Specifies the rounding methods used for converting screen coordinates (float to integer).
public enum class ContentCoordinateRoundingMode
/// [Windows.Foundation.Metadata.ContractVersion(Microsoft.Foundation.WindowsAppSDKContract, 65540)]
enum class ContentCoordinateRoundingMode
[Windows.Foundation.Metadata.ContractVersion(typeof(Microsoft.Foundation.WindowsAppSDKContract), 65540)]
public enum ContentCoordinateRoundingMode
var value = Microsoft.UI.Content.ContentCoordinateRoundingMode.auto
Public Enum ContentCoordinateRoundingMode
- Inheritance
-
ContentCoordinateRoundingMode
- Attributes
Fields
Name | Value | Description |
---|---|---|
Auto | 0 | Use the current floating-point unit (FPU) setting. Default. |
Floor | 1 | Rounds down to the largest integer less than or equal to the provided floating point number. |
Round | 2 | Rounds up or down, depending on the value of the provided floating point number. |
Ceiling | 3 | Rounds up to the smallest integer greater than or equal to the provided floating point number. |