Enum FileFormat
Enum FileFormat
ja nimityö: Aspose.Note Kokoelma: Aspose.Note.dll (25.4.0)
Esittelee OneNote tiedostomuotoa.
public enum FileFormat
Fields
OneNote2007 = 1
OneNote 2010 -ohjelma.
OneNote2010 = 2
OneNote 2010 -ohjelma.
OneNoteOnline = 3
OneNote verkossa.
Unknown = 0
Tietämätön tiedostomuoto.
Examples
Näytä, miten tarkistaa, että asiakirjan lataus epäonnistuu, koska OneNote 2007 -muotoa ei tueta.
// 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;
}