Notebook.LoadChildDocument
内容
[
隐藏
]LoadChildDocument(string)
添加子文档节点。 从文件中打开现有的 OneNote 文档。
public void LoadChildDocument(string filePath)
范围 | 类型 | 描述 |
---|---|---|
filePath | String | 文件路径。 |
例子
展示如何从流中加载笔记本。
// 文档目录的路径。
string dataDir = RunExamples.GetDataDir_NoteBook();
FileStream stream = new FileStream(dataDir + "Notizbuch öffnen.onetoc2", FileMode.Open);
var notebook = new Notebook(stream);
using (FileStream childStream = new FileStream(dataDir + "Aspose.one", FileMode.Open))
{
notebook.LoadChildDocument(childStream);
}
notebook.LoadChildDocument(dataDir + "Sample1.one");
也可以看看
- class Notebook
- 命名空间 Aspose.Note
- 部件 Aspose.Note
LoadChildDocument(string, LoadOptions)
添加子文档节点。 从文件中打开现有的 OneNote 文档。允许指定额外的加载选项。
public void LoadChildDocument(string filePath, LoadOptions loadOptions)
范围 | 类型 | 描述 |
---|---|---|
filePath | String | 文件路径。 |
loadOptions | LoadOptions | 加载选项。 |
也可以看看
- class LoadOptions
- class Notebook
- 命名空间 Aspose.Note
- 部件 Aspose.Note
LoadChildDocument(Stream)
添加子文档节点。 从流中打开现有的 OneNote 文档。
public void LoadChildDocument(Stream stream)
范围 | 类型 | 描述 |
---|---|---|
stream | Stream | 流. |
例子
展示如何从流中加载笔记本。
// 文档目录的路径。
string dataDir = RunExamples.GetDataDir_NoteBook();
FileStream stream = new FileStream(dataDir + "Notizbuch öffnen.onetoc2", FileMode.Open);
var notebook = new Notebook(stream);
using (FileStream childStream = new FileStream(dataDir + "Aspose.one", FileMode.Open))
{
notebook.LoadChildDocument(childStream);
}
notebook.LoadChildDocument(dataDir + "Sample1.one");
也可以看看
- class Notebook
- 命名空间 Aspose.Note
- 部件 Aspose.Note
LoadChildDocument(Stream, LoadOptions)
添加子文档节点。 从流中打开现有的 OneNote 文档。允许指定额外的加载选项。
public void LoadChildDocument(Stream stream, LoadOptions loadOptions)
范围 | 类型 | 描述 |
---|---|---|
stream | Stream | 流. |
loadOptions | LoadOptions | 加载选项。 |
也可以看看
- class LoadOptions
- class Notebook
- 命名空间 Aspose.Note
- 部件 Aspose.Note