Enum FileFormat

FileFormat enumeration

OneNote ファイル形式を表します。

public enum FileFormat

名前価値説明
Unknown0不明なファイル形式です。
OneNote20071OneNote 2010.
OneNote20102OneNote 2010.
OneNoteOnline3OneNote オンライン.

OneNote 2007 形式がサポートされていないためにドキュメントの読み込みが失敗したかどうかを確認する方法を示します。

// ドキュメント ディレクトリへのパス。
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;
}

関連項目