Returns a FoscLilypondGrobNameManager.
LilyPond grob name manager.
LilyPondGrobNameManager instances are created by the override factory function.
FIXME: neither of these examples works!
| at | (abjad: getattr) |
| put | (abjad: setattr) |
Example
a = FoscStaff();
a.add(FoscLeafMaker().(#[60,62,64,65], [1/4]));
m = override(a);
m.staffSymbol.color = 'red';
a.format;\new Staff \with {
\override StaffSymbol.color = #red
} {
c'4
d'4
e'4
f'4
}a.show;
Example
a = FoscNote(60, [1, 4]);
m = override(a);
m.noteHead.color = 'red';
m.noteHead.fontSize = 4;
a.format;\once \override NoteHead.color = #red
\once \override NoteHead.font-size = #4
c'4a.show;
(abjad: getattr)
!!!TODO: deprecate ??
(abjad: setattr)
!!!TODO: deprecate ??