When we set PdfGridCell border with Width 1 (or greater), that width looks wider than borders of another pdf library where 1 would be 1 pixel.
My question is what width unit is this: px or something else?
var cellBorder =
cell.Style.Borders.Left;
var newBorder = cellBorder.Clone();
newBorder
.Color = Colors.Red;
newBorder.Width = 1;
newBorder.DashStyle = Solid;
cell.Style.Borders.Left =
newBorder;
Is there a formula for converting px width to your unit?