lilypondfiletools.PaperBlock

Inheritance diagram of abjad.tools.lilypondfiletools.PaperBlock.PaperBlock.PaperBlock

class abjad.tools.lilypondfiletools.PaperBlock.PaperBlock.PaperBlock[source]

New in version 2.0.

Abjad model of LilyPond input file paper block:

abjad> paper_block = lilypondfiletools.PaperBlock()
abjad> paper_block
PaperBlock()
abjad> paper_block.print_page_number = True
abjad> paper_block.print_first_page_number = False
abjad> f(paper_block)
\paper {
    print-first-page-number = ##f
    print-page-number = ##t
}

Return paper block.

Read-only Properties

PaperBlock.format

Note

Inherited from lilypondfiletools._AttributedBlock

Read/write Properties

PaperBlock.is_formatted_when_empty

Note

Inherited from lilypondfiletools._AttributedBlock

PaperBlock.minimal_page_breaking[source]

Special Methods

PaperBlock.__delattr__()

x.__delattr__(‘name’) <==> del x.name

Note

Inherited from __builtin__.object

PaperBlock.__hash__() <==> hash(x)

Note

Inherited from __builtin__.object

PaperBlock.__repr__()

Note

Inherited from lilypondfiletools._AttributedBlock

PaperBlock.__setattr__()

x.__setattr__(‘name’, value) <==> x.name = value

Note

Inherited from __builtin__.object

PaperBlock.__str__() <==> str(x)

Note

Inherited from __builtin__.object

Table Of Contents

This Page