FoscBarLine

Returns a FoscBarLine.


Description

Create a bar line.


Attributes Summary

Instance Properties

abbreviation Gets abbreviation of bar line.
context Gets context.
tweaks Tweaks are not implemented on bar line.


Usage

  1. Attach a final bar line.

    a = FoscStaff(FoscLeafMaker().(#[60,62,64,65], [1/4]));
    m = FoscBarLine("|.");
    a[a.lastIndex].attach(m);
    a.show;


Instance Properties


abbreviation

Gets abbreviation of bar line.

Returns string.

  1. Example

    m = FoscBarLine("|.");
    m.abbreviation.postln;
    |.


context

Gets context.

  1. Example

    m = FoscBarLine("|.");
    m.context.postln;
    Staff


tweaks

Tweaks are not implemented on bar line.

The LilyPond command refuses tweaks.

Use overrides instead.