Hi,
I’m evaluating Aspose.Word for our project which generate reports/documents for end users.
I have a business case where I have a page in my document which has divided into 2 columns.
I need to fill each column with headings and list items.
Please note that this document has paragrhaps, tables etc.
So I start creating the document with
var doc = new Document();
doc.RemoveAllChildren();
var section = new Section(doc);
doc.AppendChild(section);
var body = new Body(doc);
section.AppendChild(body);
.....
Can introduce Columns the doc object without using DocumentBuilder?
Also, is it good practice to use DocumentBuilder some part of the document construction and then stick back to Document object?
Appreciate your prompt reply regarding inserting columns without DocumentBuilder or any recomanded way of introducing columns into the document with list items within columns.
Regards,
Ranga Fernando