User`s guide

mlreportgen.dom.LineSpacing class
12-201
Specify your own tag value, for example, to make it easier to identify where an issue
occurred during document generation.
Type — Option to specify type of line spacing height
string | 'exact' |
Type of line spacing, specified as one of these strings:
'multiple' — Value is the spacing in terms of number of lines.
'exact' — Value is the exact size of the line spacing.
'atleast' — Value is the minimum size of the line spacing (applies only to Word)
Value — Height of line spacing
'1in' (default) | string
String having the format valueUnits, where Units is an abbreviation for the units in
which the height is expressed. The following abbreviations are valid:
no abbreviation — pixels
cm — centimeters
in — inches
mm — millimeters
pi — picas
pt — points
Examples
Create Line Spacing 1.5 Times the Height of the Paragraph Text Lines
p = Paragraph();
p.Style = {LineSpacing(1.5)};