Hello, i try to insert some plain text from mails into a raddocument.
After insert i have several spaces between the words, i.e. Hello this is a test.
How can i avoid this issue? I also try the import with the txtprovider but same behaviour.
ParagraphSpacing seems after correction (see in code) correct.
Best regards robert
After insert i have several spaces between the words, i.e. Hello this is a test.
How can i avoid this issue? I also try the import with the txtprovider but same behaviour.
ParagraphSpacing seems after correction (see in code) correct.
DItem.Insert(TextBody, Nothing)DItem.Selection.SelectAll()DItem.ParagraphDefaultSpacingAfter = 0DItem.ParagraphDefaultSpacingBefore = 0DItem.LineSpacing = 1Best regards robert
Dim DItem As New RadDocumentDItem.Insert(TextBody, Nothing)