[]
Represents a set of table cell paddings.
public class CellPadding : FormattingBag
Gets or sets the amount of space (in points) to add on all sides around the contents of a single cell or all cells in a table. This property returns null unless the paddings on all sides are the same.
public float? All { get; set; }
Gets or sets the amount of space (in points) to add below the contents of a single cell or all cells in a table.
public float Bottom { get; set; }
Gets or sets the amount of space (in points) to add to the left of the contents of a single cell or all cells in a table.
public float Left { get; set; }
Gets or sets the amount of space (in points) to add to the right of the contents of a single cell or all cells in a table.
public float Right { get; set; }
Gets or sets the amount of space (in points) to add above the contents of a single cell or all cells in a table.
public float Top { get; set; }