Class Epub3NavOl
Top navigation level or a sub-level in the Epub3Nav (represented by the <ol> HTML tag in the navigation document).
See https://www.w3.org/TR/epub-33/#sec-nav-def-model for more information.
Inherited Members
Namespace: VersOne.Epub.Schema
Assembly: VersOne.Epub.dll
Syntax
public class Epub3NavOl
Constructors
View SourceEpub3NavOl(bool, List<Epub3NavLi>?)
Initializes a new instance of the Epub3NavOl class with specified hidden flag and the list of navigation items.
Declaration
public Epub3NavOl(bool isHidden, List<Epub3NavLi>? lis)
Parameters
| Type | Name | Description |
|---|---|---|
| bool | isHidden | A value indicating whether the navigation level should be hidden from the reader or not. |
| List<Epub3NavLi> | lis | A list of headings, structures or other items of interest for navigation purposes (represented by the <li> HTML tag in the navigation document). |
Epub3NavOl(List<Epub3NavLi>?)
Initializes a new instance of the Epub3NavOl class with the specified list of navigation items.
Declaration
public Epub3NavOl(List<Epub3NavLi>? lis = null)
Parameters
| Type | Name | Description |
|---|---|---|
| List<Epub3NavLi> | lis | A list of headings, structures or other items of interest for navigation purposes (represented by the <li> HTML tag in the navigation document). |
Properties
View SourceIsHidden
Gets a value indicating whether the navigation level should be hidden from the reader or not.
See https://www.w3.org/TR/epub-33/#sec-nav-doc-use-spine for more information.
Declaration
public bool IsHidden { get; }
Property type: bool
View SourceLis
Gets a list of headings, structures or other items of interest for navigation purposes (represented by the <li> HTML tag in the navigation document).
See https://www.w3.org/TR/epub-33/#sec-nav-def-model for more information.
Declaration
public List<Epub3NavLi> Lis { get; }