■ RichTextBox 클래스에서 선택 오프셋을 설정하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
using System.Windows.Controls; using System.Windows.Documents; /// <summary> /// 선택 오프셋 /// </summary> public struct SelectionOffset { /// <summary> /// 시작 인덱스 /// </summary> public int StartIndex; /// <summary> /// 종료 인덱스 /// </summary> public int EndIndex; } #region 선택 오프셋 설정하기 - SetSelectionOffset(richTextBox, selectionOffset) /// <summary> /// 선택 오프셋 설정하기 /// </summary> /// <param name="richTextBox">리치 텍스트 박스</param> /// <param name="selectionOffset">선택 오프셋</param> public void SetSelectionOffset(RichTextBox richTextBox, SelectionOffset selectionOffset) { TextPointer textPointer = richTextBox.Document.ContentStart; richTextBox.Selection.Select ( textPointer.GetPositionAtOffset(selectionOffset.StartIndex), textPointer.GetPositionAtOffset(selectionOffset.EndIndex ) ); } #endregion |