up vote 3 down vote favorite
share [g+] share [fb]

I've got a multiline textBox that I would like to have a label on the form displaying the current line and column position of, as Visual Studio does.

I know I can get the line # with GetLineFromCharIndex, but how can I get the column # on that line?

(I really want the Cursor Position on that line, not 'column', per se)

link|improve this question

feedback

4 Answers

up vote 5 down vote accepted
int line = textbox.GetLineFromCharIndex(textbox.SelectionStart);
int column = textbox.SelectionStart - textbox.GetFirstCharIndexFromLine(line);
link|improve this answer
feedback
textBox.SelectionStart -
textBox.GetFirstCharIndexFromLine(textBox.GetLineFromCharIndex(textBox.SelectionStart))
link|improve this answer
Perfect. This is exactly what I wanted. Thanks. – RyanE Sep 15 '08 at 20:26
feedback

Is this a textbox or a datagrid view? Cause with text box you only have one column....

link|improve this answer
feedback

Off the top of my head, I think you want the SelectionStart property.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.