Is it possible to change table starting position in a Word Page, for example start building it in mid-page or end-page(so not in the default position)?
@marin.collaku You can use floating table and specify absolute position of the table on the page:
https://reference.aspose.com/words/net/aspose.words.tables/table/absolutehorizontaldistance/
Could you please create the expected output in MS Word and attach it here? we will check the document and provide you more information.
Thanks Alexey, I managed to find the absolute horizontal property, but I was wondering if it could avoid the margins of the document. I mean the table starting to build in the top left of the page. As an example I am attaching the word document where the absolute horizontal & vertical properties are set to 0, but still the table doesn’t start in the top left of the pageLineItemTable_2022_11_08_15_38_26_01.docx (18.2 KB)
Is there a way I can do it?
@marin.collaku To achieve this you should specify table relative position to Page:
See HorizontalAnchor and VerticalAnchor properties.
Thanks, it did the job!