YouTip LogoYouTip

Obj List Item Body

Here's the translated content in clean HTML format: XSL-FO list-item-body Object | Rookie Tutorial

XSL-FO list-item-body Object | Rookie Tutorial

Rookie Tutorial -- Learning More Than Technology, It's Dreams!

XSLFO Tutorial

XSL-FO Tutorial XSLFO Introduction XSLFO Documents XSLFO Areas XSLFO Output XSLFO Flow XSLFO Pages XSLFO Blocks XSLFO Lists XSLFO Tables XSLFO & XSLT XSLFO Software

XSLFO Reference Manual

XSL-FO Objects

XSL-FO Software

XSL-FO list-item-label Object

Deep Exploration

Software

Scripting Languages

Programming

Computer Science

Web Services

Web Design and Development

Development Tools

Programming Languages

Search

Web Service

XSL-FO list-item-body Object

Image 3: XSL-FO Reference Manual XSL-FO Reference Manual


Definition and Usage

The object contains the content/body of a list-item - typically one or more objects.

Below are four XSL-FO objects used to create lists:

  • fo:list-block (contains the entire list)
  • fo:list-item (contains each item in the list)
  • fo:list-item-label (contains the list-item label - typically a containing numbers, characters, etc.)
  • fo:list-item-body (contains the content/body of the list-item - typically one or more objects)

Syntax

<fo:list-item-body>
<!--
 Contents:(block|block-container|
 table-and-caption|table|list-block|
 list-item)+
 -->
</fo:list-item-body>

Properties

Property
id
keep-together
role
source-document

Example 1

An XSL-FO list example:

<fo:list-block>
<fo:list-item>
<fo:list-item-label>
<fo:block>*</fo:block>
</fo:list-item-label>
<fo:list-item-body>
<fo:block>Volvo</fo:block>
</fo:list-item-body>
</fo:list-item>
<fo:list-item>
<fo:list-item-label>
<fo:block>*</fo:block>
</fo:list-item-label>
<fo:list-item-body>
<fo:block>Saab</fo:block>
</fo:list-item-body>
</fo:list-item>
</fo:list-block>

The above code will output:

  • Volvo
  • Saab

Image 4: XSL-FO Reference Manual XSL-FO Reference Manual

← Obj List Item LabelObj List Item β†’