I want to create a Word file with GemBox.Document, but I get an InvalidOperationException
:
Dim text As String = "Foo" + vbTab + "Bar"
Dim document As New DocumentModel()
document.Sections.Add(
New Section(document,
New Paragraph(document, text)))
System.InvalidOperationException: 'Text cannot contain new line ('\n'), carriage return ('\r') or tab ('\t') characters. If you want to break the text or insert a tab, insert SpecialCharacter instance with specific SpecialCharacterType to the parent's InlineCollection.'
How can I do that "break the text or insert a tab"?
UPDATE:
In the current latest bug fix version for GemBox.Document this is no longer the case.
That
Paragraph
's constructor from now own handles the special characters for you.However, note that nothing has changed regarding the Run's constructor and Run's Text property, they still do not accept special characters.
First note that using thisParagraph
's constructor:Is the same as using something like the following:And the problem is that
Run
element cannot contain any special characters (see Run.Text property remarks).Those characters are represented with their own elements so you need something like the following:
Or alternativaly you could take advantage of
LoadText
method which can handle those special characters for you, like the following:I hope this helps.