当我进入亚麻布时,我想知道该行的第一个字符的索引。
每次单击按钮 在richtextbox1上打印文本。
我想知道输出行的第一个字符的索引。
private int GetTextPositionAndLength(int position, int lineIndex, out int length)
{
int richtTextLineIndex = GetFirstCharIndexFromLine(lineIndex);
int index = 0;
length = 0;
return index + richtTextLineIndex;
}
private int GetFirstCharIndexFromLine(int lineIndex)
{
// What should I enter the code?
int index = 0;
return index;
}
帮帮我