class HexaPDF:: Layout:: ListBox
Parent | HexaPDF::Layout::Box |
---|
A ListBox
arranges its children as unordered or ordered list items.
The indentation of the contents from the left (content_indentation
) as well as the marker type of the items (marker_type
) can be specified. Additionally, it is possible to define the start number for ordered lists (start_number
) and the amount of spacing between items (item_spacing
).
If the list box has padding and/or borders specified, they are handled like with any other box. This means they are around all items and their contents and are not used separately for each item.
The following style properties are used (additionally to those used by the parent class):
Style#position
-
If this is set to :flow, the frames created for the list items will take the shape of the frame into account. This also means that the
available_width
andavailable_height
arguments are ignored.
Constants
- ItemResult¶
Stores the information when fitting an item of the list box.
Attributes
The indentation of the list content in PDF points. The item marker will be inside this indentation.
The default value is two times the font size.
Example:
composer.box(:list) {|list| list.lorem_ipsum_box(sentences: 1) }
composer.box(:list, content_indentation: 50) do |list|
list.lorem_ipsum_box(sentences: 1)
end
The type of list item marker to be rendered before the list item contents.
The following values are supported (and :disc is the default):
- :disc
-
Draws a filled disc for the items of the unordered list.
composer.box(:list, marker_type: :disc) do |list| list.lorem_ipsum_box(sentences: 1) end
- :circle
-
Draws an unfilled circle for the items of the unordered list.
composer.box(:list, marker_type: :circle) do |list| list.lorem_ipsum_box(sentences: 1) end
- :square
-
Draws a filled square for the items of the unordered list.
composer.box(:list, marker_type: :square) do |list| list.lorem_ipsum_box(sentences: 1) end
- :decimal
-
Draws the numbers in decimal form, starting from
start_number
) for the items of the ordered list.composer.box(:list, marker_type: :decimal) do |list| 5.times { list.lorem_ipsum_box(sentences: 1) } end
- custom marker
-
Additionally, it is possible to specify an object as value that responds to call(document, box, index) where
document
is theHexaPDF::Document
,box
is the list box, andindex
is the current item index, starting at 0. The return value needs to be aBox
object which is then fit into the content indentation area and drawn.image = lambda do |document, box, index| document.layout.image_box(machu_picchu, height: box.style.font_size) end composer.box(:list, marker_type: image) do |list| 2.times { list.lorem_ipsum_box(sentences: 1) } end
The start number when using a marker_type
that represents an ordered list.
The default value for this is 1.
Example:
composer.box(:list, marker_type: :decimal, start_number: 3) do |list|
2.times { list.lorem_ipsum_box(sentences: 1) }
end
Public Class Methods
Creates a new ListBox
object for the given child boxes in children
.
HexaPDF::Layout::Box::new
Public Instance Methods
Returns true
if no box was fitted into the list box.
HexaPDF::Layout::Box#empty?
Returns true
as the ‘position’ style property value :flow is supported.