Share via


IWpfTextViewLineCollection.GetTextMarkerGeometry Method (SnapshotSpan)

Gets the text marker geometry for the specified range of text in the buffer by using a polygonal approximation algorithm to calculate the outline path of the text regions.

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

Syntax

'Déclaration
Function GetTextMarkerGeometry ( _
    bufferSpan As SnapshotSpan _
) As Geometry
Geometry GetTextMarkerGeometry(
    SnapshotSpan bufferSpan
)
Geometry^ GetTextMarkerGeometry(
    SnapshotSpan bufferSpan
)
abstract GetTextMarkerGeometry : 
        bufferSpan:SnapshotSpan -> Geometry 
function GetTextMarkerGeometry(
    bufferSpan : SnapshotSpan
) : Geometry

Parameters

Return Value

Type: System.Windows.Media.Geometry
A Geometry that contains the bounds of all of the formatted text in the span. It is null if the span is empty or does not intersect the text formatted in the ITextView.

Exceptions

Exception Condition
ArgumentOutOfRangeException

bufferSpan is not a valid SnapshotSpan on the buffer.

Remarks

The returned geometry may contain several disjoint regions if the span contains a mix of conventional and bi-directional text. This method uses the height of the rendered text glyphs (TextHeight) to calculate the height of the geometry on each line. This method adds a one-pixel padding to the bottom of the geometries. The returned geometry is not clipped to the boundaries of the viewport.

.NET Framework Security

See Also

Reference

IWpfTextViewLineCollection Interface

GetTextMarkerGeometry Overload

Microsoft.VisualStudio.Text.Editor Namespace