Пример #1
0
 /// <summary>
 /// Deselects any selected scope cursor lines.
 /// </summary>
 public void DeselectScopeCursorLines()
 {
     _cursorSelection = null;
 }
Пример #2
0
 /// <summary>
 /// Attempts to find a scope cursor's lines at the the specified position and
 /// selects them accordingly.
 /// </summary>
 /// <param name="searchPosition">The position to search at.</param>
 public void FindAndSelectCursorLines(PointD searchPosition)
 {
     _cursorSelection = FindScopeCursorLines(searchPosition, true);
 }