v5.0.0
    Preparing search index...

    Interface SystemOptions

    Formatting for systems created/drawn from factory:

    If width is provided, the system will use the specified width.

    If noJustification flag is 'true', there is no justification between voices Otherwise, autoWidth defaults to true.

    If autowidth is true, the system uses format.preCalculateMinWidth for the width of all voices, and default stave padding

    interface SystemOptions {
        autoWidth?: boolean;
        debugFormatter?: boolean;
        details?: SystemFormatterOptions;
        factory?: Factory;
        formatIterations?: number;
        formatOptions?: FormatParams;
        noJustification?: boolean;
        noPadding?: boolean;
        spaceBetweenStaves?: number;
        width?: number;
        x?: number;
        y?: number;
    }
    Index

    Properties

    autoWidth?: boolean
    debugFormatter?: boolean
    factory?: Factory
    formatIterations?: number
    formatOptions?: FormatParams
    noJustification?: boolean
    noPadding?: boolean
    spaceBetweenStaves?: number
    width?: number
    x?: number
    y?: number