views:

16

answers:

1

In WPF you can insert at the caret position using the CaretIndex property. However this seems to be missing in the Silverlight textbox control.

Is it possible using a different technique?

+1  A: 

Try:-

 myTextBox.Select(position, 0);
 myTextBox.SelectedText = "Content to insert";
AnthonyWJones
What's the position variable?
Chris S