How to make the title case for table titles in aspose.words c#

How to make the title case for table titles in aspose.words c#.
Kindly help me asap.

@Yuvarajshivananjappa Please consider the following code

foreach (Cell cell in doc.FirstSection.Body.Tables[0].FirstRow.Cells)
    cell.FirstParagraph.ParagraphFormat.Style.Font.AllCaps = true;

For my scenario the code which is you given not working. Above given code is just capitalizing all the character in the table title. Kindly help me asap.
kindly find the below attachment.
Expected_titel_Case.docx (12.6 KB)
input_ title_case.docx (13.0 KB)

Any update on this?

@Yuvarajshivananjappa Unfortunately, I have not found any tables or table titles in the document you sent. Please indicate their location on the screenshot, and we will provide you with more information.

Kindly find the below input and expected output word document.
input_ title_case.docx (15.2 KB)
Expected_titel_Case.docx (14.4 KB)

@Yuvarajshivananjappa you can use the approach suggested here.