private void DisplayTextViewLine(ImageAdornment imageAdornment)
        {
            ITextViewLine textViewLine =
                View.TextViewLines.FirstOrDefault(line => imageAdornment.ApplyRenderTrackingPoint(View.TextSnapshot, line));

            if (textViewLine != null)
            {
                View.DisplayTextLineContainingBufferPosition(textViewLine.Start, textViewLine.Top, ViewRelativePosition.Top);
            }
            else
            {
                View.DisplayTextLineContainingBufferPosition(new SnapshotPoint(View.TextSnapshot, 0), 0.0, ViewRelativePosition.Top);
            }
        }