docx
    Preparing search index...

    Type Alias IBorderOptions

    Options for configuring a border element.

    type IBorderOptions = {
        color?: string;
        size?: number;
        space?: number;
        style: typeof BorderStyle[keyof typeof BorderStyle];
    }
    Index

    Properties

    color?: string

    Border color in hex format (e.g., "FF00AA" for purple)

    size?: number

    Border thickness in eighths of a point (1/8 pt)

    space?: number

    Spacing offset from the content in points

    style: typeof BorderStyle[keyof typeof BorderStyle]

    The border style (single, dashed, dotted, etc.)