User`s guide

mlreportgen.dom.ColSep class
12-45
mm — millimeters
pi — picas
pt — points
px — pixel
Data Types: char
Examples
Specify Table Column Formatting
Set the width and color of the first column of a table.
import mlreportgen.dom.*
doc = Document('myTableColReport','docx');
grps(1) = TableColSpecGroup;
grps(1).Span = 1;
grps(1).Style = {Color('red'),Width('1in')};
table = Table(magic(5));
table.ColSpecGroups = grps;
append(doc,table);
close(doc);
rptview('myTableColReport','docx');
“Create and Format Tables”
See Also
mlreportgen.dom.RowSep