vote up 3 vote down star

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)

flag

5 Answers

vote up 3 vote down check
int line = textbox.GetLineFromCharIndex(textbox.SelectionStart);
int column = textbox.SelectionStart - textbox.GetFirstCharIndexFromLine(line);
link|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

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

link|flag
vote up 1 vote down
textBox.SelectionStart -
textBox.GetFirstCharIndexFromLine(textBox.GetLineFromCharIndex(textBox.SelectionStart))
link|flag
Perfect. This is exactly what I wanted. Thanks. – RyanE Sep 15 '08 at 20:26
vote up 0 vote down

Really Great Man! sharma.neeraj59@yahoo.in It wasted my 3 days.

link|flag

Your Answer

Get an OpenID
or

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