I can't figure this one out. I mean the vertical spacing between lines of text in a Qml Text Item. I can't use Rich Text, and GridLayout seems to destroy my wrapping, horizontal alignment and the ability to check for truncated. This is inside a rectangle.
Text{
width:10
wrapMode: Text.Text.Wrap
text:"This will be broken into multiple lines. How could I set the vertical spacing between them?"
}
I mean:
Vs
A good habit is to check the documentation. Browsing through it, you could see a property called
lineHeight
. I believe this is what you're looking for. From the documentation:They also tell you how to use it
Using
lineHeight
as a multiplier allows you to mimic the following line-spacing enumerations in MSWord.Here's an example:
Here are the results of using different values of
lineHeight
(on a typical MacOS)Single-spacing
1.5x, Double (2x), Triple (3x)
However, if you want to mimic the other line-spacing enumerations:
you'll need to modify the pixel height. You can do this by setting
lineHeightMode
toText.FixedHeight
. Like soExactly 6