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

    Type Alias OutlineNodeProperties

    Defines properties of the outline node within PDF document. See OutlineNode.

    type OutlineNodeProperties = {
        action?: ActionProperties;
        children?: OutlineNodeProperties[];
        dest?: DestinationProperties;
        expanded?: boolean;
        textColor?: Color;
        textStyle?: OutlineNodeFontStyle;
        title: string;
    }
    Index

    Properties

    The ActionBase to be performed when this OutlineNode is activated.

    The child nodes.

    The DestinationBase to be displayed when this OutlineNode is activated.

    expanded?: boolean

    Indicates whether this OutlineNode expanded and its child nodes are visible.

    textColor?: Color

    The text color of the outline node.

    The text style of the outline node.

    title: string

    The title of the outline node.