LogicalDirection 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 a logical direction in which to perform certain text operations, such as inserting, retrieving, or navigating through text relative to a specified position (a TextPointer).
public enum class LogicalDirection
public enum LogicalDirection
type LogicalDirection =
Public Enum LogicalDirection
- Inheritance
Fields
Name | Value | Description |
---|---|---|
Backward | 0 | Backward, or from right to left. |
Forward | 1 | Forward, or from left to right. |
Examples
One of the ways in which this enumeration is used to determine where to place a TextPointer when new content is inserted. A value of Backward places the text position directly before the new content, whereas a value of Forward places the TextPointer directly after the new content.