vsto 宏xlsm文件转化为xlsx文件

workbook.SaveAs(savepath, Excel.XlFileFormat.xlWorkbookDefault, "", "", Type.Missing, Type.Missing, XlSaveAsAccessMode.xlNoChange, 1, false, Type.Missing, Type.Missing, Type.Missing);
namespace Microsoft.Office.Interop.Excel
{
    //
    // 摘要:
    //     Specifies the file format when saving the spreadsheet.
    public enum XlFileFormat
    {
        //
        // 摘要:
        //     Specifies a type of text format
        xlCurrentPlatformText = -4158,
        //
        // 摘要:
        //     Excel workbook format.
        xlWorkbookNormal = -4143,
        //
        // 摘要:
        //     Symbolic link format.
        xlSYLK = 2,
        //
        // 摘要:
        //     Lotus 1-2-3 format.
        xlWKS = 4,
        //
        // 摘要:
        //     Lotus 1-2-3 format.
        xlWK1 = 5,
        //
        // 摘要:
        //     Comma separated value.
        xlCSV = 6,
        //
        // 摘要:
        //     Dbase 2 format.
        xlDBF2 = 7,
        //
        // 摘要:
        //     Dbase 3 format.
        xlDBF3 = 8,
        //
        // 摘要:
        //     Data Interchange format.
        xlDIF = 9,
        //
        // 摘要:
        //     Dbase 4 format.
        xlDBF4 = 11,
        //
        // 摘要:
        //     Deprecated format.
        xlWJ2WD1 = 14,
        //
        // 摘要:
        //     Lotus 1-2-3 format.
        xlWK3 = 15,
        //
        // 摘要:
        //     Excel version 2.0.
        xlExcel2 = 16,
        //
        // 摘要:
        //     Excel template format.
        xlTemplate = 17,
        //
        // 摘要:
        //     Template 8
        xlTemplate8 = 17,
        //
        // 摘要:
        //     Microsoft Office Excel Add-In.
        xlAddIn = 18,
        //
        // 摘要:
        //     Microsoft Excel 97-2003 Add-In
        xlAddIn8 = 18,
        //
        // 摘要:
        //     Specifies a type of text format.
        xlTextMac = 19,
        //
        // 摘要:
        //     Specifies a type of text format.
        xlTextWindows = 20,
        //
        // 摘要:
        //     Specifies a type of text format.
        xlTextMSDOS = 21,
        //
        // 摘要:
        //     Comma separated value.
        xlCSVMac = 22,
        //
        // 摘要:
        //     Comma separated value.
        xlCSVWindows = 23,
        //
        // 摘要:
        //     Comma separated value.
        xlCSVMSDOS = 24,
        //
        // 摘要:
        //     Deprecated format.
        xlIntlMacro = 25,
        //
        // 摘要:
        //     Microsoft Office Excel Add-In international format.
        xlIntlAddIn = 26,
        //
        // 摘要:
        //     Excel version 2.0 far east.
        xlExcel2FarEast = 27,
        //
        // 摘要:
        //     Microsoft Works 2.0 format
        xlWorks2FarEast = 28,
        //
        // 摘要:
        //     Excel version 3.0.
        xlExcel3 = 29,
        //
        // 摘要:
        //     Lotus 1-2-3 format.
        xlWK1FMT = 30,
        //
        // 摘要:
        //     Lotus 1-2-3 format.
        xlWK1ALL = 31,
        //
        // 摘要:
        //     Lotus 1-2-3 format.
        xlWK3FM3 = 32,
        //
        // 摘要:
        //     Excel version 4.0.
        xlExcel4 = 33,
        //
        // 摘要:
        //     Quattro Pro format.
        xlWQ1 = 34,
        //
        // 摘要:
        //     Excel version 4.0. Workbook format.
        xlExcel4Workbook = 35,
        //
        // 摘要:
        //     Specifies a type of text format.
        xlTextPrinter = 36,
        //
        // 摘要:
        //     Lotus 1-2-3 format.
        xlWK4 = 38,
        //
        // 摘要:
        //     Excel version 5.0.
        xlExcel5 = 39,
        //
        // 摘要:
        //     Excel 95.
        xlExcel7 = 39,
        //
        // 摘要:
        //     Deprecated format.
        xlWJ3 = 40,
        //
        // 摘要:
        //     Deprecated format.
        xlWJ3FJ3 = 41,
        //
        // 摘要:
        //     Specifies a type of text format.
        xlUnicodeText = 42,
        //
        // 摘要:
        //     Excel version 95 and 97.
        xlExcel9795 = 43,
        //
        // 摘要:
        //     Web page format.
        xlHtml = 44,
        //
        // 摘要:
        //     MHT format.
        xlWebArchive = 45,
        //
        // 摘要:
        //     Excel Spreadsheet format.
        xlXMLSpreadsheet = 46,
        //
        // 摘要:
        //     Excel12
        xlExcel12 = 50,
        //
        // 摘要:
        //     Open XML Workbook
        xlOpenXMLWorkbook = 51,
        //
        // 摘要:
        //     Workbook default
        xlWorkbookDefault = 51,
        //
        // 摘要:
        //     Open XML Workbook Macro Enabled
        xlOpenXMLWorkbookMacroEnabled = 52,
        //
        // 摘要:
        //     Open XML Template Macro Enabled
        xlOpenXMLTemplateMacroEnabled = 53,
        //
        // 摘要:
        //     Open XML Template
        xlOpenXMLTemplate = 54,
        //
        // 摘要:
        //     Open XML Add-In
        xlOpenXMLAddIn = 55,
        //
        // 摘要:
        //     Excel8
        xlExcel8 = 56,
        //
        // 摘要:
        //     OpenDocument Spreadsheet
        xlOpenDocumentSpreadsheet = 60,
        xlOpenXMLStrictWorkbook = 61
    }
}

你可能感兴趣的:(excel,vsto,vsto)