Open Word doc with Invoke Code and do activities inside

@markosc ,

Try adding the below snippet as shown in the image below :

for(int i =0;i<firstTable.Rows.Count;i++)
{
	firstTable.Cell(i,0).Range.ParagraphFormat.Alignment=Microsoft.Office.Interop.Word.WdParagraphAlignment.wdAlignParagraphRight;
}

Let us know if it doesn’t work.