Aligning my caption for table style to left

Hi,
I am aligning my caption style to left using
ParagraphFormat.Alignment = ParagraphAlignment.Left
But it is not being aligned to left completly, there is extra tab space

@Amrinder_Singh Could you please attach your input, output and expected output documents here for our reference? We will check the issue and provide you more information.

InputAndOutput.zip (11.4 KB)

In this i have added file in which input and output is given

@Amrinder_Singh You should also reset first line and left indent of the caption paragraph:

Please try using the following code:

para.ParagraphFormat.Alignment = ParagraphAlignment.Left;
para.ParagraphFormat.LeftIndent = 0;
para.ParagraphFormat.FirstLineIndent = 0;