TextPattern.DocumentRange Property

Definition

Gets a text range that encloses the main text of a document.

public:
 property System::Windows::Automation::Text::TextPatternRange ^ DocumentRange { System::Windows::Automation::Text::TextPatternRange ^ get(); };
public System.Windows.Automation.Text.TextPatternRange DocumentRange { get; }
member this.DocumentRange : System.Windows.Automation.Text.TextPatternRange
Public ReadOnly Property DocumentRange As TextPatternRange

Property Value

Examples

In the following code example, the targetTextPattern member variable is a TextPattern object obtained from a text provider of interest.

// Initialize the document range for the text of the document.
documentRange = targetTextPattern.DocumentRange;
' Initialize the document range for the text of the document.
documentRange = targetTextPattern.DocumentRange

Remarks

Some auxiliary text such as headers, footnotes, or annotations might not be included.

Applies to

See also