@ganesh.sv
Thanks for sharing the document. In your case, we suggest you use the text columns to achieve your requirement. The TextColumn class represents a single text column. TextColumn is a member of the TextColumnCollection collection. The TextColumns collection includes all the columns in a section of a document.
You can indent the paragraph using Paragraph.ParagraphFormat.LeftIndent property. Please read the following article.
Using DocumentBuilder to Modify a Document Easily
Below code example shows how to work with text columns. Hope this helps you.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
TextColumnCollection columns = builder.PageSetup.TextColumns;
columns.SetCount(3);
List list = doc.Lists.Add(ListTemplate.BulletDefault); ;
builder.ListFormat.List = list;
for (int i = 1; i < 10; i++)
{
builder.Writeln("List item " + i);
}
builder.InsertBreak(BreakType.ColumnBreak);
for (int i = 1; i < 10; i++)
{
builder.Writeln("List item " + i);
}
builder.InsertBreak(BreakType.ColumnBreak);
for (int i = 1; i < 10; i++)
{
builder.Writeln("List item " + i);
}
builder.ListFormat.RemoveNumbers();
builder.InsertBreak(BreakType.SectionBreakContinuous);
builder.Writeln();
builder.PageSetup.TextColumns.SetCount(1);
builder.Writeln("Jun-2012 To Jul-2012 (Certificate of completion of the Courses)");
builder.ListFormat.List = list;
builder.ParagraphFormat.LeftIndent = 180;
builder.Writeln("High Time International English Cente");
builder.Writeln("High Time International English Cente");
builder.Writeln("High Time International English Cente");
builder.Writeln("High Time International English Cente");
doc.Save(MyDir + @"18.11.docx");