Application.FileExportConverters Property

Excel Developer Reference

Returns a FileExportConverters collection that represents all the file converters for saving files available to Microsoft Office Excel. Read-only.

Version Information
 Version Added:  Excel 2007

Syntax

expression.FileExportConverters

expression   A variable that represents an Application object.

Remarks

For more information about returning a single member of a collection, see Returning an Object from a Collection.

Example

The following example displays the description for the first file converter in the FileExportConverters collection.

Visual Basic for Applications
  Dim fcTemp As FileExportConverter
Set fcTemp = FileExportConverter(1)

MsgBox fcTemp.Description

See Also