FileConverter.Extensions Property (PowerPoint)
Returns the file name extensions associated with the specified FileConverter object. Read-only String.
Version Information
Version Added: PowerPoint 2007
Syntax
expression .Extensions
expression A variable that represents a FileConverter object.
Example
Note
Although the following code applies to Microsoft Word, you can readily modify it to apply to PowerPoint.
This example displays the name and file name extensions for the first file converter.
Dim fcTemp As FileConverter
Set fcTemp = FileConverters(1)
MsgBox "The file name extensions for " & fcTemp.FormatName _
& " files are: " & fcTemp.Extensions