New in version 2.5.
Abjad model of LilyPond input file context block:
abjad> context_block = lilypondfiletools.ContextBlock()
abjad> context_block
ContextBlock()
abjad> context_block.context_name = 'Score'
abjad> context_block.override.bar_number.transparent = True
abjad> context_block.override.time_signature.break_visibility = schemetools.Scheme('end-of-line-invisible')
abjad> context_block.set.proportionalNotationDuration = schemetools.SchemeMoment((1, 45))
abjad> f(context_block)
\context {
\Score
\override BarNumber #'transparent = ##t
\override TimeSignature #'break-visibility = #end-of-line-invisible
proportionalNotationDuration = #(ly:make-moment 1 45)
}
Return context block.
Note
Inherited from lilypondfiletools._AttributedBlock
x.__delattr__(‘name’) <==> del x.name
Note
Inherited from __builtin__.object
Note
Inherited from __builtin__.object
Note
Inherited from lilypondfiletools._AttributedBlock
x.__setattr__(‘name’, value) <==> x.name = value
Note
Inherited from __builtin__.object
Note
Inherited from __builtin__.object