tags:

views:

511

answers:

1

How to get / set caret position in silverlight textbox ?

+2  A: 

TextBox.SelectionStart should work for you. Setting TextBox.SelectionLength will define the length of the selected/highlighted text if you need it.

Program.X
thank you!!!!!!
Grienders