■3539 / inTopicNo.3) |
Re[2]: RichTextBoxに表示されている行数をもとめるには |
□投稿者/ aoa (38回)-(2007/05/14(Mon) 16:45:02)
|
なるほど、
RichTextBox.GetCharIndexFromPositionは気づきませんでした。
public Int32 GetLastVisibleRowIndex() {
//左下の座標を求める
Point point = new Point(0, this.Height);
Int32 pos = base.GetCharIndexFromPosition(point);
return base.GetLineFromCharIndex(pos);
}
ありがとうございました!
|
解決済み
|