Show / Hide Table of Contents

Class Epub3NavLi

Navigation element which represents a heading, structure or other item of interest for navigation purposes within Epub3NavOl (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.

Inheritance
object
Epub3NavLi
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 Epub3NavLi

Constructors

View Source

Epub3NavLi(Epub3NavAnchor?, Epub3NavSpan?, Epub3NavOl?)

Initializes a new instance of the Epub3NavLi class.

Declaration
public Epub3NavLi(Epub3NavAnchor? anchor = null, Epub3NavSpan? span = null, Epub3NavOl? childOl = null)
Parameters
Type Name Description
Epub3NavAnchor anchor

The navigation link associated with the navigation element (represented by the <a> HTML tag in the navigation document) or null if the navigation element doesn't contain a link.

Epub3NavSpan span

The navigation header associated with the navigation element (represented by the <span> HTML tag in the navigation document) or null if the navigation element doesn't contain a header.

Epub3NavOl childOl

The navigation sub-level within the navigation element (represented by the <ol> HTML tag in the navigation document) or null if the navigation element doesn't contain a sub-level.

Properties

View Source

Anchor

Gets the navigation link associated with the navigation element (represented by the <a> HTML tag in the navigation document) or null if the navigation element doesn't contain a link.

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

Declaration
public Epub3NavAnchor? Anchor { get; }
Property type: Epub3NavAnchor
View Source

ChildOl

Gets the navigation sub-level within the navigation element (represented by the <ol> HTML tag in the navigation document) or null if the navigation element doesn't contain a sub-level.

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

Declaration
public Epub3NavOl? ChildOl { get; }
Property type: Epub3NavOl
View Source

Span

Gets the navigation header associated with the navigation element (represented by the <span> HTML tag in the navigation document) or null if the navigation element doesn't contain a header.

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

Declaration
public Epub3NavSpan? Span { get; }
Property type: Epub3NavSpan
  • View Source
In this article
Back to top Generated by DocFX