c# - MigraDoc table border issue with left indent -
i'm trying create pdf document using migradoc, , facing issues table borders when table contains left indent. i'm passing data following functions render table. public void addtable(int _inumberofcolumns, double leftind) { table = section.addtable(); if (leftind != 0d) { table.format.leftindent = leftind; } (int = 0; < _inumberofcolumns; i++) { column col = table.addcolumn(); } } in above method i'm passing double value parameter leftind . is, believe, cause of issue. and code add cells follows. i'm passing bool variables decide if cells border needs visible or not... (to add row i'm calling row = table.addrow(); ) public void addcolumn(int _icellnum, int icolspan, double dcellwidthinpt, system.drawing.color color, bool btopborder, bool bleftborder, bool bbottomborder, bool brightborder) { cell = row.cells[_icellnum]; if (icolspan > 0) { cell.mergeright = icolspan-1...