I want to add space between superscript and next run

Hi @alexey.noskov,

Iam facing issue adding space after superscript. i have attached the document and did highlight with red mark .will you help me regarding this issue.(there is superscript below table and after that superscript i want to empty space between superscript and next run ) . please check the attached documentspace para.JPG (51.9 KB)

plz check page number 43XYZ 500 mg (2).docx (194.8 KB)

@k.sukumar You can use code like this to ass a space after superscripted Run:

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

doc.GetChildNodes(NodeType.Run, true).Cast<Run>().Where(r => r.Font.Superscript).ToList()
    .ForEach(r => r.ParentNode.InsertAfter(new Run(doc, " "), r));

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