TextUnit 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.
Represents pre-defined units of text for the purposes of navigation within a document.
public enum class TextUnit
[System.Runtime.InteropServices.ComVisible(true)]
[System.Runtime.InteropServices.Guid("A044E5C8-FC20-4747-8CC8-1487F9CBB680")]
public enum TextUnit
public enum TextUnit
[<System.Runtime.InteropServices.ComVisible(true)>]
[<System.Runtime.InteropServices.Guid("A044E5C8-FC20-4747-8CC8-1487F9CBB680")>]
type TextUnit =
type TextUnit =
Public Enum TextUnit
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
Character | 0 | Specifies that the text unit is one character in length. |
Format | 1 | Specifies that the text unit is the length of a single, common format specification, such as bold, italic, or similar. |
Word | 2 | Specifies that the text unit is one word in length. |
Line | 3 | Specifies that the text unit is one line in length. |
Paragraph | 4 | Specifies that the text unit is one paragraph in length. |
Page | 5 | Specifies that the text unit is one document-specific page in length. |
Document | 6 | Specifies that the text unit is an entire document in length. |
Remarks
Any method using TextUnit will deprecate up
to the next supported TextUnit if the given TextUnit is not supported by the control.
The order, from smallest unit to largest, is listed below.
Character
Format
Word
Line
Paragraph
Page
Document