This forum is closed. Thank you for your contributions.
How to find is the cursor position is in last character of a line in richtextbox.
FOR EXAMPLE: "This is a test application". i want to find whether cursor position is after "n" in "This is a test application".
FOR EXAMPLE:
"This is a test application".
i want to find whether cursor position is after "n" in
http://msdn.microsoft.com/en-us/library/system.windows.forms.textboxbase.selectionstart(VS.80).aspx
Get the position of SelectionStart, then check the next character is a System.Environment.NewLine?