FileType
PresentationRootPackage.FileType property
Ruft das Dateityp-Metadatenpaket ab.
public PresentationTypePackage FileType { get; }
Eigentumswert
Das Dateityp-Metadatenpaket.
Beispiele
Dieses Beispiel zeigt, wie man den genauen Typ einer Präsentation erkennt und einige zusätzliche Dateiformatinformationen extrahiert.
using (Metadata metadata = new Metadata(Constants.InputPptx))
{
var root = metadata.GetRootPackage<PresentationRootPackage>();
Console.WriteLine(root.FileType.FileFormat);
Console.WriteLine(root.FileType.PresentationFormat);
Console.WriteLine(root.FileType.MimeType);
Console.WriteLine(root.FileType.Extension);
}
Siehe auch
- class PresentationTypePackage
- class PresentationRootPackage
- namensraum GroupDocs.Metadata.Formats.Document
- Montage GroupDocs.Metadata