Class FileConverters (PowerPoint VBA)

A collection of FileConverter objects that represent all the file converters available for opening and saving files. To use a FileConverters class variable it first needs to be instantiated, for example


Dim fcs as FileConverters
Set fcs = FileConverters

Count

Returns a Long that represents the number of file converters in the collection.


Dim fcs As FileConverters: Set fcs = 
Dim lngCount As Long
lngCount = fcs.Count

Item

Returns an individual FileConverter object in a collection.

Item (Index)

Index: The individual object to be returned. Can be a Long indicating the ordinal position or a String representing the name of the individual object.


Dim fcs As FileConverters: Set fcs = 
Dim fcr As FileConverter
Set fcr = fcs(Index:=1)