2
我嘗試將帶格式的文本插入到Word書籤中。該文本來自多個富文本控件(我們使用TX文本控件)並附加到書籤中。 問題在於標籤是按原樣書寫的並且沒有被解釋。將HTML或RTF格式的文本插入Word書籤
oWord = New Word.Application
Dim strFileName As String = "\\...\Template.dot"
oDoc = oWord.Documents.Add(strFileName)
Dim strText As String = ""
Dim strOut As String = ""
txtPart1.Save(strOut, TXTextControl.StringStreamType.RichTextFormat)
strText += strOut
strText += ControlChars.CrLf & ControlChars.CrLf & ControlChars.CrLf
strText += txtPart2.Text
oDoc.Bookmarks.Item("Conditions").Range.Text = strText
oWord.Visible = True
我嘗試使用RTF或HTML格式爲我的字符串,但它是相同的行爲。