FormatName Property

Applies To

FileConverter object.

Description

Returns the name of the specified file converter. The format names appear in the Save as type box in the Save As dialog box (File menu). Read-only String.

See Also

Extensions property, FileConverters property, OpenFormat property, SaveFormat property.

Example

This example displays the format name of the first converter in the FileConverters collection.

MsgBox FileConverters(1).FormatName
This example uses the AvailableConv() array to store the names of all the available file converters.

ReDim AvailableConv(FileConverters.Count - 1)
i = 0
For Each aConverter In FileConverters
    AvailableConv(i) = aConverter.FormatName
    i = i + 1
Next aConverter