@schie/fluent-zpl - v0.10.0
    Preparing search index...

    Interface AddressBlockOpts

    Options for address block text fields (convenience method for multi-line text).

    This interface defines the configuration options for adding address blocks to a label:

    • at: Specifies the x and y coordinates for the address block position.
    • lines: Array of text lines (null/undefined lines are skipped).
    • lineHeight: Optional spacing between lines in dots.
    • size: Optional font size in dots.
    • family: Optional font family.
    • rotate: Optional orientation of the text.
    interface AddressBlockOpts {
        at: Position;
        family?: FontFamily;
        lineHeight?: number;
        lines: (string | null | undefined)[];
        rotate?: Orientation;
        size?: number;
    }
    Index

    Properties

    family?: FontFamily
    lineHeight?: number

    Line spacing in dots; rounded to an integer with a minimum of 1.

    lines: (string | null | undefined)[]
    rotate?: Orientation
    size?: number

    Font size in dots; rounded to an integer with a minimum of 1.