Read only specific table and add to the another document as the same format(table name)

Read only specific table and add to the another document as the same format (table name).

@Yuvarajshivananjappa You can use either NodeImporter class or Document.ImportNode method to import node from one document to Another. Please see our documentation to learn how to copy nodes between documents:
https://docs.aspose.com/words/net/insert-and-append-documents/#import-and-insert-nodes-manually

You can use bookmarks to identify tables you need to copy. For example you can put bookmark in one of table cell and use code like this to get this table:

Document doc = new Document(@"C:\Temp\in.docx");

// Get bookmark
Bookmark bk = doc.Range.Bookmarks["mybookmark"];

// Get parent table of the bookmark.
Table table = (Table)bk.BookmarkStart.GetAncestor(NodeType.Table);