EbookSaveOptions

EbookSaveOptions class

Allows to specify custom options for generating and saving the document in all supportable e-Book formats: ePub, MOBI, and AZW3.

public sealed class EbookSaveOptions : ISaveOptions

Constructors

Name Description
EbookSaveOptions() This parameterless constructor creates a new instance of EbookSaveOptions with ePub output format (can be modified then through OutputFormat property)
EbookSaveOptions(EBookFormats) Creates a new instance of EbookSaveOptions with specified mandatory e-Book output format, while all other parameters are default

Properties

Name Description
ExportDocumentProperties { get; set; } Specifies whether to export built-in and custom document properties in resultant file. Default value is false.
OutputFormat { get; set; } Specifies the format of the resultant e-Book file: IDPF ePub, MOBI, or AZW3.
SplitHeadingLevel { get; set; } Specifies the maximum level of headings at which to split the e-Book file. Default value is 2. Setting it to 0 will disable splitting, so all content of the e-Book will be incorporarted into a single package inside the resultant file.

Remarks

Supported E-book formats:

  1. ePub (Electronic Publication)
  2. MOBI (MobiPocket)
  3. AZW3 (Kindle Format 8t)

See Also