SheetXL - v0.3.20
    Preparing search index...

    Interface SizeBasedProperties

    Extends IStyle.Properties to include a size.

    This is used to allow for different styles depending on the number of stripes (rows or columns used for the style).

    interface SizeBasedProperties {
        alignment?: ITextBoxAlignment.Properties;
        border?: IBorder.Properties;
        fill?:
            | Serializable
            | NoneProperties
            | PatternProperties<Serializable>
            | SolidProperties<Serializable>
            | GradientProperties<Serializable>;
        font?: IStyledFont.Properties<Serializable>;
        insets?: Partial<Rectangle>;
        named?: string;
        numberFormat?: string | number;
        quotePrefix?: boolean;
        size?: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Alignment properties.

    border?: IBorder.Properties

    Border properties.

    fill?:
        | Serializable
        | NoneProperties
        | PatternProperties<Serializable>
        | SolidProperties<Serializable>
        | GradientProperties<Serializable>

    Fill properties.

    font?: IStyledFont.Properties<Serializable>

    Font properties.

    insets?: Partial<Rectangle>

    Custom indentation insets.

    named?: string

    Named style property.

    numberFormat?: string | number

    Number Format properties.

    ()

    quotePrefix?: boolean

    Quote Prefix property.

    size?: number

    The size is available for the following table elements:

    • firstRowStripe
    • secondRowStripe
    • firstColumnStripe
    • secondColumnStripe
    1