Class FileExportConverters (Excel VBA)
A collection of FileExportConverter objects that represent all the file converters available for saving files. To use a FileExportConverters class variable it first needs to be instantiated, for example
Dim fecs as FileExportConverters
Set fecs = Application.FileExportConverters
For Each
Here is an example of processing the FileExportConverters items in a collection.
Dim fec As FileExportConverter
For Each fec In Application.FileExportConverters
Next fec
Count
Returns a Long that represents the number of file converters in the collection.
Dim lngCount As Long
lngCount = Application.FileExportConverters.Count
Item
Returns an individual FileExportConverter object from a collection.
Item (Index)
Index: An integer that represents the individual object to be returned.
Dim fecItem As FileExportConverter
Set fecItem = Application.FileExportConverters(Index:=1)