Table table = builder.StartTable();
//Row Added
//5 Header Columns Added
//End Row
…
//Cell ColSpan as 5 and text center
builder.InsertCell().FirstParagraph.ParagraphFormat.Alignment = ParagraphAlignment.Center;
builder.CellFormat.PreferredWidth = PreferredWidth.FromPoints(250 * 5);
builder.Write(“No Records found.”);
builder.EndRow();