I have word document in that Place table title in first row of table, with no top, right, or left border lines

I have word document in that Place table title in first row of table, with no top, right, or left border lines.

@Yuvarajshivananjappa Unfortunately, your request is not clear enough. Could you please elaborate it in more details and attach your input and expected output documents here? We will check your documents and provide you more information.

Kindly find the below attachment. Please help me asap
Expected_output11.docx (16.9 KB)
Input_word_Document (1).docx (15.9 KB)

Any update on this?

@Yuvarajshivananjappa You can use code like the following to achieve what you need:

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

// Get the table.
Table table = doc.FirstSection.Body.Tables[0];

// Reset borders of all cells in the first row.
foreach (Cell c in table.FirstRow.Cells)
    c.CellFormat.Borders.LineStyle = LineStyle.None;

doc.Save(@"C:\Temp\out.docx");

Please see our documentation to learn more about working wot borders:
https://reference.aspose.com/words/net/aspose.words.tables/cellformat/borders/

For my scenario the code which is given not working. Kindly help me asap.

@Yuvarajshivananjappa Please consider the following code

Document doc = new Document("Input_word_Document (1).docx");
Table table = doc.FirstSection.Body.Tables[0];
Paragraph para = table.FirstRow.FirstCell.FirstParagraph;
doc.FirstSection.Body.InsertBefore(para, table);
table.FirstRow.Remove();
doc.Save("Expected_output11.docx");

Kindly find the below attachment. Do needfully asap.
Expected_output_words _Documnet.docx (12.7 KB)
Input_word_Document.docx (14.5 KB)

Any update on this?

Kindly update?

@Yuvarajshivananjappa Answered in a separate topic.