Returns a FoscLilypondContextSetting.
LilyPond context setting.
| lilypondType | Gets LilyPond type. |
| name | Optional LilyPond context name. |
| contextProperty | Gets LilyPond context property name. |
| formatPieces | Gets LilyPond context setting \set or \unset format pieces. |
| isUnset | Is true if context setting unsets its value. Otherwise false. |
| value | Value of LilyPond context setting. |
| == | !!!TODO |
Example
a = FoscLilypondContextSetting('Score', 'autoBeaming', value: true);
a.formatPieces.join("\n").postln;\set Score.autoBeaming = ##tExample
a = FoscStaff(FoscLeafMaker().(#[60,62,64,65], [1/4]));
a = FoscScore([a]);
m = FoscRehearsalMark(number: 1);
a[0][0].attach(m);
z = set(a).markFormatter = FoscScheme('format-mark-box-alphabet');
a.show;
Example
z.prAttributeTuples.postln;[ [ 'markFormatter', FoscScheme.new ] ]Gets LilyPond type.
Optional LilyPond context name.
Gets LilyPond context property name.
Gets LilyPond context setting \set or \unset format pieces.
Is true if context setting unsets its value. Otherwise false.
Value of LilyPond context setting.
!!!TODO
Is true when argument is a LilyPond context setting with equivalent keyword values.