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.
Inherited Members
Namespace: VersOne.Epub.Schema
Assembly: VersOne.Epub.dll
Syntax
public class Epub3NavLi
Constructors
View SourceEpub3NavLi(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 |
Epub3NavSpan | span | The navigation header associated with the navigation element (represented by the <span> HTML tag in the navigation document)
or |
Epub3NavOl | childOl | The navigation sub-level within the navigation element (represented by the <ol> HTML tag in the navigation document)
or |
Properties
View SourceAnchor
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 SourceChildOl
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 SourceSpan
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; }