FileConverter.FormatName-Eigenschaft (PowerPoint)

Gibt den Namen des angegebenen Dateikonvertierungsprogramms zurück. Schreibgeschützte Zeichenfolge.

Syntax

Ausdruck. FormatName

Ausdruck Eine Variable, die ein FileConverter-Objekt darstellt.

HinwBemerkungeneise

Die Formatnamen werden im Dialogfeld Speichern unter im Feld Dateityp angezeigt.

Beispiel

Hinweis

[!HINWEIS] Although the following code applies to Microsoft Word, you can readily modify it to apply to PowerPoint.

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.

Dim intTemp As Integer

Dim fcLoop As FileConverter

Dim AvailableConv As Variant



ReDim AvailableConv(FileConverters.Count - 1)



intTemp = 0



For Each fcLoop In FileConverters

    AvailableConv(intTemp) = fcLoop.FormatName

    intTemp = intTemp + 1

Next fcLoop

Siehe auch

FileConverter-Objekt

Support und Feedback

Haben Sie Fragen oder Feedback zu Office VBA oder zu dieser Dokumentation? Unter Office VBA-Support und Feedback finden Sie Hilfestellung zu den Möglichkeiten, wie Sie Support erhalten und Feedback abgeben können.