IWpfTextView.GetTextViewLineContainingBufferPosition(SnapshotPoint) Method
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.
Gets the IWpfTextViewLine that contains the specified text buffer position.
public:
Microsoft::VisualStudio::Text::Formatting::IWpfTextViewLine ^ GetTextViewLineContainingBufferPosition(Microsoft::VisualStudio::Text::SnapshotPoint bufferPosition);
public Microsoft.VisualStudio.Text.Formatting.IWpfTextViewLine GetTextViewLineContainingBufferPosition (Microsoft.VisualStudio.Text.SnapshotPoint bufferPosition);
abstract member GetTextViewLineContainingBufferPosition : Microsoft.VisualStudio.Text.SnapshotPoint -> Microsoft.VisualStudio.Text.Formatting.IWpfTextViewLine
Public Function GetTextViewLineContainingBufferPosition (bufferPosition As SnapshotPoint) As IWpfTextViewLine
Parameters
- bufferPosition
- SnapshotPoint
The text buffer position used to search for a text line.
Returns
The IWpfTextViewLine that contains the specified buffer position.
Exceptions
bufferPosition
is not a valid buffer position.
if the view has not completed initialization.
Remarks
This method returns an IWpfTextViewLine if it exists in the view.
If the line does not exist in the cache of formatted lines, it will be formatted and added to the cache.
The returned IWpfTextViewLine could be invalidated by either a layout by the view or by subsequent calls to this method.