Returns a FoscBarLine.
Create a bar line.
| abbreviation | Gets abbreviation of bar line. |
| context | Gets context. |
| tweaks | Tweaks are not implemented on bar line. |
Attach a final bar line.
a = FoscStaff(FoscLeafMaker().(#[60,62,64,65], [1/4]));
m = FoscBarLine("|.");
a[a.lastIndex].attach(m);
a.show;
Gets abbreviation of bar line.
Returns string.
Example
m = FoscBarLine("|.");
m.abbreviation.postln;|.Gets context.
Example
m = FoscBarLine("|.");
m.context.postln;StaffTweaks are not implemented on bar line.
The LilyPond command refuses tweaks.
Use overrides instead.