ListViewHelper

Rendering a list given as a one dimensional array. It is possible to easily define different default styles and apply them using the type attribute, see chapter Text Types.

Basic Usage

<pdf:list listElements="{0: 'Full Stack Application Development', 1: 'Modernizing, Refactoring and Migrating Applications', 2: 'Active Collaboration in an existing Team', 3: 'Consulting and Support for IT Projects'}"/>
<pdf:list listElements="{someArrayProperty}"/>
Copied!

Advanced Usage

<pdf:list
	trim="1"
	removeDoubleWhitespace="1"
	color="#999999"
	fontFamily="arial"
	fontSize="14"
	fontStyle="bold"
	lineHeight="1.5"
	characterSpacing="0.2"
	paragraphLineFeed="1"
	alignment="center"
	autoHyphenation="1"
	padding="{top:1, right:0, bottom:0, left:0}"

	bulletColor="#333"
	bulletImageSrc="EXT:pdfviewhelpers/some/path/image.png"
	bulletSize="2.5"

	listElements="{0: 'Full Stack Application Development', 1: 'Modernizing, Refactoring and Migrating Applications', 2: 'Active Collaboration in an existing Team', 3: 'Consulting and Support for IT Projects'}"
	/>
Copied!