Hello,
I try to add to document a textbox with rich text format,
For instance,
With this code, we can add normal (standard) text:
Aspose.Words.Paragraph par = new Aspose.Words.Paragraph(doc);
par.AppendChild(new Run(doc, "HELLO"));
textbox.AppendChild(par);
But this is not valid if text is on rich text format. With a Word Object will be...
Word.Shape shape = WordApp.ActiveDocument.Shapes.AddTextbox(MsoTextOrientation.msoTextOrientationHorizontal, 100, 100, 100, 100, ref missing);
shape.RTF = richTextBox1.Rtf;
How can i do this with Aspose?
Thanks!!!