WavyLineAttributes: {
    accelerate: "yes" | "no" | null;
    beats: number | null;
    color: string | null;
    default-x: number | null;
    default-y: number | null;
    last-beat: number | null;
    number: number | null;
    placement: "above" | "below" | null;
    relative-x: number | null;
    relative-y: number | null;
    second-beat: number | null;
    smufl: string | null;
    start-note: "below" | "main" | "upper" | null;
    trill-step: "unison" | "half" | "whole" | null;
    two-note-turn: "none" | "whole" | "half" | null;
    type: "start" | "stop" | "continue";
}

Type declaration

  • accelerate: "yes" | "no" | null

    If yes, the trill accelerates during playback. It is no if not specified.

  • beats: number | null

    The number of distinct notes during playback, counting the starting note but not the two-note turn. It is 4 if not specified.

  • color: string | null

    Indicates the color of an element.

  • default-x: number | null

    Changes the computation of the default horizontal position. If the parent is a <notehead-text> element, the origin is changed relative to the left-hand side of the note or the musical position within the bar. Otherwise, the origin is changed relative to the start of the first measure on the system, and these values are used when the current measure or a succeeding measure starts a new system. Positive x is right and negative x is left.

  • default-y: number | null

    Changes the computation of the default vertical position. The origin is changed relative to the top line of the staff. Positive y is up and negative y is down.

  • last-beat: number | null

    The percentage of the way through the duration for landing on the last beat. It is 75 if not specified.

  • number: number | null

    Distinguishes multiple wavy lines when they overlap in MusicXML document order.

  • placement: "above" | "below" | null

    Indicates whether something is above or below another element, such as a note or a notation.

  • relative-x: number | null

    Changes the horizontal position relative to the default position, either as computed by the individual program, or as overridden by the default-x attribute. Positive x is right and negative x is left.

  • relative-y: number | null

    Changes the vertical position relative to the default position, either as computed by the individual program, or as overridden by the default-y attribute. Positive y is up and negative y is down.

  • second-beat: number | null

    The percentage of the way through the duration for landing on the second beat. It is 25 if not specified.

  • smufl: string | null

    Specifies a particular wavy line glyph from the Standard Music Font Layout (SMuFL) Multi-segment lines range.

  • start-note: "below" | "main" | "upper" | null

    The starting note for playback, relative to the current note. It is upper if not specified.

  • trill-step: "unison" | "half" | "whole" | null

    The alternating note for playback, relative to the current note. It is whole if not specified.

  • two-note-turn: "none" | "whole" | "half" | null

    Specifies the two-note turn included at the end of the trill, if any. It is none if not specified.

  • type: "start" | "stop" | "continue"

    Indicates if this is the start, stop, or continuation of the wavy line. The value should be continue whenever used within a <barline> element.

Generated using TypeDoc