User`s guide

mlreportgen.dom.Border class
12-25
Left border segment width, specified as a string.
RightColor — Right border segment color
string
Right border segment color, specified as a string.
RightStyle — Right border segment style
string
Right border segment style, specified as a string.
RightWidth — Right border segment width
string
Right border segment width, specified as a string.
Examples
Format Table Borders
import mlreportgen.dom.*;
doctype = 'html';
d = Document('test', doctype);
t = Table(magic(5));
t.Style = {Border('inset', 'crimson', '6pt'), Width('50%')};
t.TableEntriesInnerMargin = '6pt';
append(d, t);
close(d);
rptview('test', doctype);
“Create and Format Tables”
See Also
mlreportgen.dom.ColSep | mlreportgen.dom.RowSep |
mlreportgen.dom.Table