Returns a FoscContext.
A context.
| consistsCommands | Set of LilyPond engravers to include in context definition. |
| lilypondType | Gets and sets context name of context. |
| lilypondType_ | |
| lilypondContext | Gets LilyPondContext associated with context. |
| removeCommands | Set of LilyPond engravers to remove from context. |
| tag | Gets tag. |
| asCompileString | !!!TODO: not yet implemented |
| copy | |
| storeArgs |
Set of LilyPond engravers to include in context definition.
Returns array.
Example
a = FoscStaff([]);
a.consistsCommands.add('Horizontal_bracket_engraver');
a.consistsCommands;List[ 'Horizontal_bracket_engraver' ]Gets and sets context name of context.
Returns string.
Example
a = FoscStaff([]);
a.lilypondType;'Staff'Gets LilyPondContext associated with context.
Returns FoscLilypondContext instance.
Example
a = FoscStaff([]);
a.lilypondContext.name;'Staff'Set of LilyPond engravers to remove from context.
Returns set.
Example
a = FoscStaff([]);
a.removeCommands.add('Horizontal_bracket_engraver');
a.removeCommands;List[ 'Horizontal_bracket_engraver' ]Gets tag.
!!!TODO: not yet implemented