Can we add tables, paragraphs, images etc. elements at absolute x,y position on document

I have a requirement where we get the page dimensions and list of elements (paragraph, table, image etc.) with their x,y coordinates. We have to add them at the respective x,y positions.
We tried using GroupShape and shapes, to add the shape at x,y position and insert nodes into them, but the limitation is - for example, if we insert shape at x,y with certain height and width and insert table into it, but if user wants to edit that document later and insert more rows or columns or add new line into table cell then the extended table portion is getting cropped.

So, our requirement is to insert element at x,y position and user should be able to modify contents of that element by editing document.

Is there any way to achieve this ?

@BALKRUSHNA015478 MS Word documents are flow by their nature. Normally when table or any other content is inserted into the document, the following document’s content is reflowed. You can insert floating content into the document, like shapes or frames, but such document will be not convenient for editing, since absolutely positioned content is not reflowed. So it is not recommended to build documents using absolutely positioned content.
Of course, you can create textbox shape and place it at specified coordinates and put the required content into textbox.