Skip to content

Latest commit

 

History

History
45 lines (26 loc) · 1.2 KB

Excel.Application.FileExportConverters.md

File metadata and controls

45 lines (26 loc) · 1.2 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Application.FileExportConverters property (Excel)
vbaxl10.chm133318
vbaxl10.chm133318
Excel.Application.FileExportConverters
1b7289ea-344f-cc3d-ec31-04d4196533ff
04/04/2019
medium

Application.FileExportConverters property (Excel)

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

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.

Dim fcTemp As FileExportConverter 
Set fcTemp = FileExportConverter(1) 
 
MsgBox fcTemp.Description

[!includeSupport and feedback]