Interface NWCTXTTempo

interface NWCTXTTempo {
    fields: {
        Base?: "Half" | "Eighth" | "Eighth Dotted" | "Quarter" | "Quarter Dotted" | "Half Dotted";
        Placement?: string;
        Pos?: number;
        Tempo: number;
        Text?: string;
        Wide?: boolean;
    };
    name: "Tempo";
}

Properties

Properties

fields: {
    Base?: "Half" | "Eighth" | "Eighth Dotted" | "Quarter" | "Quarter Dotted" | "Half Dotted";
    Placement?: string;
    Pos?: number;
    Tempo: number;
    Text?: string;
    Wide?: boolean;
}

Type declaration

  • Optional Base?: "Half" | "Eighth" | "Eighth Dotted" | "Quarter" | "Quarter Dotted" | "Half Dotted"
  • Optional Placement?: string

    Example

    "AsStaffSignature"
    
  • Optional Pos?: number

    Example

    6
    

    Example

    8
    

    Example

    10
    

    Example

    14
    
  • Tempo: number

    Example

    90
    
  • Optional Text?: string

    Example

    "Allegro"
    

    Example

    "Andantino"
    

    Example

    "Andante"
    

    Example

    "Moderato"
    

    Example

    "Allegretto"
    

    Example

    "Adagio"
    

    Example

    "Largo"
    
  • Optional Wide?: boolean

    Example

    true
    
name: "Tempo"

Generated using TypeDoc