Pdfmake: How to increase Line Space between two line ?

Created on 27 May 2016  路  2Comments  路  Source: bpampuch/pdfmake

I want to increase line space between 2 lines in pdfmake document.. How to do this?

Most helpful comment

Using the lineHeight, example:

var dd = {
    content: [
        {
            lineHeight: 2,
            text:'Another paragraph, this time a little bit longer to make sure, this line will be divided into at least two lines. Another paragraph, this time a little bit longer to make sure, this line will be divided into at least two lines.'
        }
    ]
}

All 2 comments

+1

Using the lineHeight, example:

var dd = {
    content: [
        {
            lineHeight: 2,
            text:'Another paragraph, this time a little bit longer to make sure, this line will be divided into at least two lines. Another paragraph, this time a little bit longer to make sure, this line will be divided into at least two lines.'
        }
    ]
}
Was this page helpful?
0 / 5 - 0 ratings

Related issues

dmatesic picture dmatesic  路  3Comments

davidyeiser picture davidyeiser  路  3Comments

m-brudi picture m-brudi  路  3Comments

einfallstoll picture einfallstoll  路  3Comments

jokris1 picture jokris1  路  3Comments