Get supported file formats
Leave feedback
On this page
GroupDocs.Annotation allows you to get the list of supported file formats. To do this, follow these steps:
- Call the GetSupportedFileTypes method of the FileType class.
- Enumerate through the collection of FileType objects.
The following code snippet shows how to get supported file formats list:
IEnumerable<FileType> supportedFileTypes = FileType
.GetSupportedFileTypes()
.OrderBy(f => f.Extension);
foreach (FileType fileType in supportedFileTypes)
Console.WriteLine(fileType);
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.