TextPointer.InsertTextInRun(String) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将指定文本插入到文本 Run 中的当前位置。
public:
void InsertTextInRun(System::String ^ textData);
public void InsertTextInRun (string textData);
member this.InsertTextInRun : string -> unit
Public Sub InsertTextInRun (textData As String)
参数
- textData
- String
要插入的文本。
例外
当前位置没有位于 Run 元素内。
textData
为 null
。
注解
If the TextPointer is not scoped by a Run element, a Run is inserted along with the textData
.