The <interchangeable> element

Parent element: <time>

The <interchangeable> element is used to represent the second in a pair of interchangeable dual time signatures, such as the 6/8 in 3/4 (6/8).

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

Hierarchy

  • Interchangeable

Implements

Constructors

Properties

schema: {
    attributes: {
        separator: {
            type: "optional";
            value: {
                choices: readonly ["none", "adjacent", "diagonal", "horizontal", "vertical"];
                type: "choices";
            };
        };
        symbol: {
            type: "optional";
            value: {
                choices: readonly ["normal", "common", "cut", "dotted-note", "note", "single-number"];
                type: "choices";
            };
        };
    };
    contents: readonly [{
        type: "optional";
        value: typeof TimeRelation;
    }, {
        label: "beats";
        type: "label";
        value: {
            type: "oneOrMore";
            value: readonly [{
                type: "required";
                value: typeof Beats;
            }, {
                type: "required";
                value: typeof BeatType;
            }];
        };
    }];
    name: "interchangeable";
} = Interchangeable.schema

Type declaration

  • Readonly attributes: {
        separator: {
            type: "optional";
            value: {
                choices: readonly ["none", "adjacent", "diagonal", "horizontal", "vertical"];
                type: "choices";
            };
        };
        symbol: {
            type: "optional";
            value: {
                choices: readonly ["normal", "common", "cut", "dotted-note", "note", "single-number"];
                type: "choices";
            };
        };
    }
    • Readonly separator: {
          type: "optional";
          value: {
              choices: readonly ["none", "adjacent", "diagonal", "horizontal", "vertical"];
              type: "choices";
          };
      }
      • Readonly type: "optional"
      • Readonly value: {
            choices: readonly ["none", "adjacent", "diagonal", "horizontal", "vertical"];
            type: "choices";
        }
        • Readonly choices: readonly ["none", "adjacent", "diagonal", "horizontal", "vertical"]
        • Readonly type: "choices"
    • Readonly symbol: {
          type: "optional";
          value: {
              choices: readonly ["normal", "common", "cut", "dotted-note", "note", "single-number"];
              type: "choices";
          };
      }
      • Readonly type: "optional"
      • Readonly value: {
            choices: readonly ["normal", "common", "cut", "dotted-note", "note", "single-number"];
            type: "choices";
        }
        • Readonly choices: readonly ["normal", "common", "cut", "dotted-note", "note", "single-number"]
        • Readonly type: "choices"
  • Readonly contents: readonly [{
        type: "optional";
        value: typeof TimeRelation;
    }, {
        label: "beats";
        type: "label";
        value: {
            type: "oneOrMore";
            value: readonly [{
                type: "required";
                value: typeof Beats;
            }, {
                type: "required";
                value: typeof BeatType;
            }];
        };
    }]
  • Readonly name: "interchangeable"
schema: {
    attributes: {
        separator: {
            type: "optional";
            value: {
                choices: readonly ["none", "adjacent", "diagonal", "horizontal", "vertical"];
                type: "choices";
            };
        };
        symbol: {
            type: "optional";
            value: {
                choices: readonly ["normal", "common", "cut", "dotted-note", "note", "single-number"];
                type: "choices";
            };
        };
    };
    contents: readonly [{
        type: "optional";
        value: typeof TimeRelation;
    }, {
        label: "beats";
        type: "label";
        value: {
            type: "oneOrMore";
            value: readonly [{
                type: "required";
                value: typeof Beats;
            }, {
                type: "required";
                value: typeof BeatType;
            }];
        };
    }];
    name: "interchangeable";
} = ...

Type declaration

  • Readonly attributes: {
        separator: {
            type: "optional";
            value: {
                choices: readonly ["none", "adjacent", "diagonal", "horizontal", "vertical"];
                type: "choices";
            };
        };
        symbol: {
            type: "optional";
            value: {
                choices: readonly ["normal", "common", "cut", "dotted-note", "note", "single-number"];
                type: "choices";
            };
        };
    }
    • Readonly separator: {
          type: "optional";
          value: {
              choices: readonly ["none", "adjacent", "diagonal", "horizontal", "vertical"];
              type: "choices";
          };
      }
      • Readonly type: "optional"
      • Readonly value: {
            choices: readonly ["none", "adjacent", "diagonal", "horizontal", "vertical"];
            type: "choices";
        }
        • Readonly choices: readonly ["none", "adjacent", "diagonal", "horizontal", "vertical"]
        • Readonly type: "choices"
    • Readonly symbol: {
          type: "optional";
          value: {
              choices: readonly ["normal", "common", "cut", "dotted-note", "note", "single-number"];
              type: "choices";
          };
      }
      • Readonly type: "optional"
      • Readonly value: {
            choices: readonly ["normal", "common", "cut", "dotted-note", "note", "single-number"];
            type: "choices";
        }
        • Readonly choices: readonly ["normal", "common", "cut", "dotted-note", "note", "single-number"]
        • Readonly type: "choices"
  • Readonly contents: readonly [{
        type: "optional";
        value: typeof TimeRelation;
    }, {
        label: "beats";
        type: "label";
        value: {
            type: "oneOrMore";
            value: readonly [{
                type: "required";
                value: typeof Beats;
            }, {
                type: "required";
                value: typeof BeatType;
            }];
        };
    }]
  • Readonly name: "interchangeable"

Methods

  • Gets

    Returns null | "none" | "adjacent" | "diagonal" | "horizontal" | "vertical"

  • Gets

    Returns null | "normal" | "note" | "common" | "cut" | "dotted-note" | "single-number"

Generated using TypeDoc