ITextViewLine::GetNormalizedTextBounds Method (SnapshotSpan)

 

Gets a collection of TextBounds structures for the text that corresponds to the given span.

Namespace:   Microsoft.VisualStudio.Text.Formatting
Assembly:  Microsoft.VisualStudio.Text.UI (in Microsoft.VisualStudio.Text.UI.dll)

Collection<TextBounds>^ GetNormalizedTextBounds(
	SnapshotSpan bufferSpan
)

Parameters

bufferSpan
Type: Microsoft.VisualStudio.Text::SnapshotSpan

The SnapshotSpan representing the text for which to compute the text bounds.

Return Value

Type: System.Collections.ObjectModel::Collection<TextBounds>^

A collection of TextBounds structures that contain the text specified in bufferSpan.

Exception Condition
ArgumentOutOfRangeException

bufferSpan is not a legal span in the underlying text buffer.

If the line contains bidirectional text, the TextBounds structures that are returned may be disjoint. The height and top of the bounds will correspond to the top and bottom of this ITextViewLine.

Return to top
Show: