Convert Word to ebook, epap or moodlebook

Can we read Word document and convert it to ebook, epap or moodlebook with Aspose.Words?

@ivan2116

You can convert Word document to EPUB file format. Please check the following code example.

Document doc = new Document(MyDir + "in.docx");
doc.Save(MyDir + "out.epub", SaveFormat.Epub);

Great, thank you!