PointOptions 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.
Defines options for specifying or retrieving a point.
This enumeration supports a bitwise combination of its member values.
public enum class PointOptions
/// [System.Flags]
/// [Windows.Foundation.Metadata.Version(1)]
enum class PointOptions
[System.Flags]
[Windows.Foundation.Metadata.Version(1)]
public enum PointOptions
var value = Microsoft.UI.Text.PointOptions.none
Public Enum PointOptions
- Inheritance
-
PointOptions
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | No options. |
IncludeInset | 1 | Add left and top insets to the left and top coordinates of the rectangle, and subtract right and bottom insets from the right and bottom coordinates. |
Start | 32 | The start position of the text range. |
ClientCoordinates | 256 | Return client coordinates instead of screen coordinates. |
AllowOffClient | 512 | Allow points outside of the client area. |
Transform | 1024 | Transform coordinates using a world transform supplied by the host app. |
NoHorizontalScroll | 65536 | Horizontal scrolling is disabled. |
NoVerticalScroll | 262144 | Vertical scrolling is disabled. |