The <syllabic> element

Parent element: <lyric>

The <syllabic> element indicates lyric hyphenation. The single, begin, end, and middle values represent single-syllable words, word-beginning syllables, word-ending syllables, and mid-word syllables, respectively.

https://www.w3.org/2021/06/musicxml40/musicxml-reference/elements/syllabic/

Hierarchy

  • Syllabic

Implements

Constructors

Properties

attributes: SyllabicAttributes
schema: {
    attributes: {};
    contents: readonly [{
        type: "required";
        value: {
            label: "syllabic";
            type: "label";
            value: {
                choices: readonly ["begin", "end", "middle", "single"];
                type: "choices";
            };
        };
    }];
    name: "syllabic";
} = Syllabic.schema

Type declaration

  • Readonly attributes: {}
    • Readonly contents: readonly [{
          type: "required";
          value: {
              label: "syllabic";
              type: "label";
              value: {
                  choices: readonly ["begin", "end", "middle", "single"];
                  type: "choices";
              };
          };
      }]
    • Readonly name: "syllabic"
    schema: {
        attributes: {};
        contents: readonly [{
            type: "required";
            value: {
                label: "syllabic";
                type: "label";
                value: {
                    choices: readonly ["begin", "end", "middle", "single"];
                    type: "choices";
                };
            };
        }];
        name: "syllabic";
    } = ...

    Type declaration

    • Readonly attributes: {}
      • Readonly contents: readonly [{
            type: "required";
            value: {
                label: "syllabic";
                type: "label";
                value: {
                    choices: readonly ["begin", "end", "middle", "single"];
                    type: "choices";
                };
            };
        }]
      • Readonly name: "syllabic"

      Methods

      • Gets

        Returns "middle" | "single" | "begin" | "end"

      Generated using TypeDoc