/// <summary> ///Sets the text of this text run /// </summary> /// <param name="value">the literal text which shall be displayed in the document</param> public void SetText(String value) { run.GetTArray(0).Value = value; for (int i = 1; i < run.SizeOfTArray(); i++) { run.RemoveT(i); } }