SpreadsheetGear 2010
FileFormat Enumeration
Example  See Also  Send Feedback
SpreadsheetGear Namespace : FileFormat Enumeration

Specifies the file format with which to save a file.

Syntax

Visual Basic (Declaration) 
Public Enum FileFormat 
   Inherits System.Enum
C# 
public enum FileFormat : System.Enum 

Members

MemberDescription
CSV Specifies a text file of comma-separated values. Typically saved with the .csv filename extension.
Excel8 Specifies the Biff 8 File format which is the default file format of Excel 97, Excel 2000, Excel 2002 (XP) and Excel 2003. This format is also supported by Excel 2007. Typically saved with the .xls filename extension.
OpenXMLWorkbook Specifies the Excel 2007 Open XML file format. Typically saved with the .xlsx filename extension.
OpenXMLWorkbookMacroEnabled Specifies the Excel 2007 macro enabled Open XML file format. Typically saved with the .xlsm filename extension.
UnicodeText Specifies a tab-delimited Unicode text file encoded as UTF-8. Typically saved with the .txt filename extension.
XLS97 Deprecated in favor of FileFormat.Excel8 to make the SpreadsheetGear API more like Excel's API. Use FileFormat.Excel8 for Excel 97 through Excel 2003 workbooks.

Example

C#Copy Code
class Program
{
    static void Main()
    {
        // Create a new empty workbook in a new workbook set.
        SpreadsheetGear.IWorkbook workbook = SpreadsheetGear.Factory.GetWorkbook();
        // Set Sheet1!A1 to "Hello World!".
        workbook.Worksheets["Sheet1"].Cells["A1"].Value = "Hello World!";
        // Save to C:\MyData.xls as Excel file.
        workbook.SaveAs(@"C:\MyData.xls", SpreadsheetGear.FileFormat.XLS97);
        // Open C:\MyData.xls.
        workbook = SpreadsheetGear.Factory.GetWorkbook(@"C:\MyData.xls");
        // Output Sheet1!A1.
        System.Console.WriteLine(workbook.Worksheets["Sheet1"].Cells["A1"].Value.ToString());
    }
}
Visual BasicCopy Code
Module Program
    Sub Main()
        ' Create a new empty workbook in a new workbook set.
        Dim workbook As SpreadsheetGear.IWorkbook = SpreadsheetGear.Factory.GetWorkbook()
        ' Set Sheet1!A1 to "Hello World!".
        workbook.Worksheets("Sheet1").Cells("A1").Value = "Hello World!"
        ' Save to C:\MyData.xls as Excel file.
        workbook.SaveAs("C:\\MyData.xls", SpreadsheetGear.FileFormat.XLS97)
        ' Open C:\MyData.xls.
        workbook = SpreadsheetGear.Factory.GetWorkbook("C:\\MyData.xls")
        ' Output Sheet1!A1.
        System.Console.WriteLine(workbook.Worksheets("Sheet1").Cells("A1").Value.ToString())
    End Sub
End Module

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         SpreadsheetGear.FileFormat

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

Copyright © 2003-2010 SpreadsheetGear LLC. All Rights Reserved.Help Powered by Innovasys   
SpreadsheetGear is a registered trademark of SpreadsheetGear LLC.
Microsoft, Microsoft Excel and Visual Studio are trademarks or registered trademarks of Microsoft Corporation.