Document.FileFormat
Document.FileFormat property
获取文件格式(OneNote 2010、OneNote Online)。
public FileFormat FileFormat { get; }
例子
显示如何获取文档的文件格式。
// 文档目录的路径。
string dataDir = RunExamples.GetDataDir_LoadingAndSaving();
var document = new Aspose.Note.Document(dataDir + "Aspose.one");
switch (document.FileFormat)
{
case FileFormat.OneNote2010:
// 处理 OneNote 2010
break;
case FileFormat.OneNoteOnline:
// 在线处理 OneNote
break;
}
也可以看看
- enum FileFormat
- class Document
- 命名空间 Aspose.Note
- 部件 Aspose.Note