1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
.. default-domain:: js
.. highlight:: javascript
OutlineItem
===========
Outline items are returned from the `Document.prototype.loadOutline` method and
represent a table of contents entry.
They are also used with the `OutlineIterator` interface.
Constructors
------------
.. class:: OutlineItem
|interface_type|
Outline items are passed around as plain objects.
.. code-block:: javascript
interface OutlineItem {
title: string | undefined,
uri: string | undefined,
open: boolean,
down?: OutlineItem[],
page?: number,
}
|