Global.FileConverters property (Word)

Returns a FileConverters collection that represents all the file converters available to Microsoft Word. Read-only.

Syntax

expression. FileConverters

expression A variable that represents a 'Global' object.

Remarks

For information about returning a single member of a collection, see Returning an object from a collection.

Example

This example displays the path of the WordPerfect 5.0 file converter.

MsgBox FileConverters("WrdPrfctDOS50").Path

This example displays a message that indicates whether the third converter in the FileConverters collection can save files.

If FileConverters(3).CanSave = True Then 
 MsgBox FileConverters(3).FormatName & " can save files" 
Else 
 MsgBox FileConverters(3).FormatName & " cannot save files" 
End If

This example displays the name of the last file converter.

Dim fcTemp As FileConverter 
 
Set fcTemp = FileConverters(FileConverters.Count) 
MsgBox "The file name extensions for " & fcTemp.FormatName & _ 
 " files are: " & fcTemp.Extensions

See also

Global Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.