I'm using a DragEventArgs for a Drop Event and have the x, y Drop Insert position within a TextBox.
How do you convert the x, y to and Index within the TextField? I is extremely import for me to find out this inormation!
Thank you very much!
|
I'm using a DragEventArgs for a Drop Event and have the x, y Drop Insert position within a TextBox. How do you convert the x, y to and Index within the TextField? I is extremely import for me to find out this inormation! Thank you very much! |
||||
|
You need to use the
|
|||||
|
|
Here is a small enhancement that calculates the position index of a character that is closest to the dropping point. The GetCharacterIndexFromPoint method actually does not return the position of the closest char (like it's documented), but it returns the index of the character that is under the dropped point (even if the dropped point is right next to the right edge of the char, in which case the method should return the index of the next char which is actually closer to the dropping point).
|
|||
|
|
"California"in a TextBox, and dropped something in between the'i'and the'f', that it would insert that object at index 4 of the Text field? – Dan J Jan 6 '11 at 20:31