Message-ID: <400459212.9177.1711678781923.JavaMail.web05$@web05> Subject: Exported From Confluence MIME-Version: 1.0 Content-Type: multipart/related; boundary="----=_Part_9176_1021570311.1711678781923" ------=_Part_9176_1021570311.1711678781923 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Content-Location: file:///C:/exported.html ExcelApplication.FileFormat

ExcelApplication.FileFormat

Description

When creating Excel files with=20 Create, specifies which file format to use= .=20
C#
=20
enum FileFormat
=20
=20
vb.net
=20
Enum FileFormat
=20
=20

Remarks

=20

Starting with Excel 2007, Microsoft introduced a new file format for off= ice documents. This new format relaxes some of the restrictions of the old = file formats; for example a single worksheet can now have over a million ro= ws instead of sixty-five thousand.

Excel files created with FileFormat.Xls can be opened in al= l versions of Excel. Excel files created with FileFormat.Xlsx = can be opened in Excel 2007 and later, or Excel 2003 with the compatibility pack.

=20

Examples

=20
C#
=20
Workbook wb =3D xla.Create(ExcelApplication.FileFormat.Xlsx);
=20
vb.net
=20
Dim wb As Workbook =3D xla.Create(ExcelApplication.FileFormat.Xl=
sx);
=20

Values

Name

Description

Xls

Excel 2003 binary-format files, with the .xls= extension.

Xlsx

Excel 2007 and 2010 xml-format files, with th= e .xlsx extension.

------=_Part_9176_1021570311.1711678781923--