TextUnit Enum

Definition

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
TextUnit
Attributes

Fields

Character 0

Specifies that the text unit is one character in length.

Document 6

Specifies that the text unit is an entire document in length.

Format 1

Specifies that the text unit is the length of a single, common format specification, such as bold, italic, or similar.

Line 3

Specifies that the text unit is one line in length.

Page 5

Specifies that the text unit is one document-specific page in length.

Paragraph 4

Specifies that the text unit is one paragraph in length.

Word 2

Specifies that the text unit is one word 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

Applies to