public EbookSplited(string relativePath)
 {
     RelativeEbookPath = relativePath;
     Ebook             = new Ebook(EbookPath);
     OriginalTitle     = Ebook.Epub.Title;
     CapitulosAOmitir  = new bool[Ebook.TotalChapters];
     Idioma            = INDEFINIDO;
     UpdateTotalChapters();
 }
 void ISaveAndLoad.Load()
 {
     Ebook = new Ebook(EbookPath);
     UpdateTotalChapters();
 }
 public IEnumerable <string> GetContentElements(int chapterSplited, string element = "p")
 {
     return(Ebook.GetContentElements(GetRealChapter(chapterSplited), element));
 }