Show / Hide Table of Contents

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/publishing/epub32/epub-packages.html#sec-package-nav-def-model for more information.

Inheritance
object
Epub3NavOl
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: VersOne.Epub.Schema
Assembly: VersOne.Epub.dll
Syntax
public class Epub3NavOl

Constructors

View Source

Epub3NavOl(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).

View Source

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 Source

IsHidden

Gets a value indicating whether the navigation level should be hidden from the reader or not.

See https://www.w3.org/publishing/epub32/epub-packages.html#sec-package-nav-def-hidden for more information.

Declaration
public bool IsHidden { get; }
Property type: bool
View Source

Lis

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/publishing/epub32/epub-packages.html#sec-package-nav-def-model for more information.

Declaration
public List<Epub3NavLi> Lis { get; }
Property type: List<Epub3NavLi>
  • View Source
In this article
Back to top Generated by DocFX