PdfDocument.PdfPageLinks


class PdfDocument.PdfPageLinks


Represents the links within a single page of a PDF document.

Summary

Public constructors

PdfPageLinks(
    gotoLinks: List<PdfPageGotoLinkContent>,
    externalLinks: List<PdfPageLinkContent>
)

Public properties

List<PdfPageLinkContent>

A list of external links (links to web pages or other resources) represented as PdfPageLinkContent objects.

List<PdfPageGotoLinkContent>

A list of internal links (links to other pages within the same document) represented as PdfPageGotoLinkContent objects.

Public constructors

PdfPageLinks

Added in 1.0.0-alpha10
PdfPageLinks(
    gotoLinks: List<PdfPageGotoLinkContent>,
    externalLinks: List<PdfPageLinkContent>
)

Public properties

externalLinks

Added in 1.0.0-alpha10
val externalLinksList<PdfPageLinkContent>

A list of external links (links to web pages or other resources) represented as PdfPageLinkContent objects.

gotoLinks

Added in 1.0.0-alpha10
val gotoLinksList<PdfPageGotoLinkContent>

A list of internal links (links to other pages within the same document) represented as PdfPageGotoLinkContent objects.