File Formats

UnoViewer supports following file formats. This includes popular Microsoft Office ( Word, Excel, PowerPoint), Open Office and Adobe Acrobat file formats. It does not require any additional software or plug-in installations to view these files online from your website. More file formats will be added subsequently.

public enum ViewFileFormat
{
    // Word
    Doc,
    Docx,
    Odt,
    Docm,
    Dot,
    Dotm,
    Dotx,
    Rtf,
    Txt,
    Xml, 
    // Excel
    Xls,
    Xlsx,
    Xlsm,
    Xlsb,
    Ods,
    Csv,
    // PowerPoint
    Ppt,
    Pptx,
    Ppts,
    Pps,
    Odp, 
    // Acrobat Pdf
    Pdf,
    Epub
}

Viewing any of the above mentioned file formats eventually creates a viewer instance of a specific format which is mentioned below.

public enum ViewerFormat
{
    Word,
    Excel,
    PowerPoint,
    Pdf,
    None
}