views:

149

answers:

0

I am planning to set the text in a content control, by using the Word.ContentControl.SetPlaceholderText() method:

string myText = "Hello World!";
Word.ContentControl ctrl;

ctrl.SetPlaceholderText((null, null, myText);

myText = ctrl.PlaceholderText.Value;

Can somebody let me know if there is any size limitation on the myText string?