The <tuning-step> element

Parent elements: <accord>, <staff-tuning>

The <tuning-step> element is represented like the <step> element, with a different name to reflect its different function in string tuning.

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

Hierarchy

  • TuningStep

Implements

Constructors

Properties

schema: {
    attributes: {};
    contents: readonly [{
        type: "required";
        value: {
            label: "step";
            type: "label";
            value: {
                choices: readonly ["A", "B", "C", "D", "E", "F", "G"];
                type: "choices";
            };
        };
    }];
    name: "tuning-step";
} = TuningStep.schema

Type declaration

  • Readonly attributes: {}
    • Readonly contents: readonly [{
          type: "required";
          value: {
              label: "step";
              type: "label";
              value: {
                  choices: readonly ["A", "B", "C", "D", "E", "F", "G"];
                  type: "choices";
              };
          };
      }]
    • Readonly name: "tuning-step"
    schema: {
        attributes: {};
        contents: readonly [{
            type: "required";
            value: {
                label: "step";
                type: "label";
                value: {
                    choices: readonly ["A", "B", "C", "D", "E", "F", "G"];
                    type: "choices";
                };
            };
        }];
        name: "tuning-step";
    } = ...

    Type declaration

    • Readonly attributes: {}
      • Readonly contents: readonly [{
            type: "required";
            value: {
                label: "step";
                type: "label";
                value: {
                    choices: readonly ["A", "B", "C", "D", "E", "F", "G"];
                    type: "choices";
                };
            };
        }]
      • Readonly name: "tuning-step"

      Methods

      • Gets

        Returns "A" | "B" | "C" | "D" | "E" | "F" | "G"

      Generated using TypeDoc