1.21 gigawatts
1.21 gigawatts

Reputation: 17770

How to set the indent size of bullets in TLF?

Is there a property or style that I can use to set the indent size of the bullets in a list in TLF?

Upvotes: 0

Views: 32

Answers (2)

1.21 gigawatts
1.21 gigawatts

Reputation: 17770

Using the listAutoPadding seems to work when importing and exporting TLF markup.

<flow:TextFlow whiteSpaceCollapse="preserve" version="3.0.0" xmlns:flow="http://ns.adobe.com/textLayout/2008">
    <flow:list listAutoPadding="30" listStyleType="lowerGreek">
        <flow:li>
            <flow:p>
                <flow:span>Bullet List!</flow:span>
            </flow:p>
        </flow:li>
        <flow:li>
            <flow:p>
                <flow:span>line 2</flow:span>
            </flow:p>
        </flow:li>
        <flow:li>
            <flow:p>
                <flow:span>line 3</flow:span>
            </flow:p>
        </flow:li>
    </flow:list>
</flow:TextFlow>

Upvotes: 1

Robin van den Bogaard
Robin van den Bogaard

Reputation: 520

element.textIndent or element.paddingLeft

Upvotes: 0

Related Questions