如何设置RichTextBox中的指定文字为选中状态!!
如题!!就是在RICHTextBox中!我想设置某一行为选中状态
怎么用代码实现!!!
急需!!
/// <summary> /// 选中行 /// </summary> /// <param name="line">行号,从0开始</param> private void selectLine(int line) { int a = this.richTextBox1.GetFirstCharIndexFromLine(line); int b = this.richTextBox1.GetFirstCharIndexFromLine(++line); if (a == -1) return; else if (b == -1) b = this.richTextBox1.TextLength - a; else b = b - a; this.richTextBox1.Select(a, b); }