DsPdfJS API - v9.1.0
    Preparing search index...

    Type Alias BorderProperties

    Defines properties of the annotation's border, allowing set a border in "json" form.

    let la = new LinkAnnotation();
    l.border = { width: 0};
    type BorderProperties = {
        color?: Color;
        dashPattern?: number[];
        style?: BorderStyle;
        width?: number;
    }
    Index

    Properties

    color?: Color

    The border color. Not specified means "Black".

    dashPattern?: number[]

    The dash pattern, used if style == BorderStyle#Dashed.

    style?: BorderStyle

    The border style. Not specified means BorderStyle.Solid

    width?: number

    The border's width in points (1/72 inch). Not specified means 1.