Enum FileFormat

Enum FileFormat

اسم الفضاء : Aspose.Note تجميع: Aspose.Note.dll (25.4.0)

تمثل تنسيق ملف OneNote.

public enum FileFormat

Fields

OneNote2007 = 1

لعبة OneNote 2010.

OneNote2010 = 2

لعبة OneNote 2010.

OneNoteOnline = 3

OneNote على الانترنت.

Unknown = 0

تنسيق ملف غير معروف.

Examples

يظهر كيفية التحقق من فشل تحميل المستند لأن تنسيق OneNote 2007 غير مدعوم.

// The path to the documents directory.
                                                                                                        string dataDir = RunExamples.GetDataDir_LoadingAndSaving();
                                                                                                        string fileName = Path.Combine(dataDir, "OneNote2007.one");

                                                                                                        try
                                                                                                        {
                                                                                                            new Document(fileName);
                                                                                                        }
                                                                                                        catch (UnsupportedFileFormatException e)
                                                                                                        {
                                                                                                            if (e.FileFormat == FileFormat.OneNote2007)
                                                                                                            {
                                                                                                                Console.WriteLine("It looks like the provided file is in OneNote 2007 format that is not supported.");
                                                                                                            }
                                                                                                            else
                                                                                                                throw;
                                                                                                        }
 عربي