Hi,everyone

How can implement text indent with text item on line first ?
For example, like this:

(indent 20px) text text text text text texttext text
text texttext texttext texttext texttext texttext.

I can get the same result with the following code, but it is not too accurate.(use some blank)
Text {
width: 200
wrapMode: Text.Wrap
text: "  " + " text text text text text texttext text text texttext texttext texttext texttext texttext.."
}

What's the right way to realize it ?