Enum FileFormat

FileFormat enumeration

Represents OneNote file format.

public enum FileFormat

Values

NameValueDescription
Unknown0Unknown file format.
OneNote20071OneNote 2010.
OneNote20102OneNote 2010.
OneNoteOnline3OneNote Online.

Examples

Shows how to check if a document load is failed because OneNote 2007 format is not supported.

// 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;
}

See Also