I want to insert table cell with less spacing or padding? is any table setting i have to apply?

builder.StartTable();
builder.InsertCell();
builder.Writeln("Name");
builder.InsertCell();
builder.Writeln("Age");
builder.EndRow();
builder.EndTable();

This is the screenshot of generated document.

Screenshot_1.jpg (3.5 KB)

@affan1996 You can specify cell paddings using CellFormat properties BottomPadding, TopPadding, LeftPadding and RightPadding.