I need a way to get the Point where the user is currently typing in this control so I can anchor another form there. I know RichTextBox lets you figure this out, is there somthing analogous for this control or any other trick that can get me this?
Hello,
You could try using the 'GetCaretLocation()' method of the 'EditInfo' object. Something like the following:
ultraFormattedTextEditor1.EditInfo.GetCaretLocation(21);
Please feel free to let me know if I misunderstood you or if you have any other questions.