Notebook.Save

Save(string)

将 OneNote 文档保存到文件中。

public void Save(string fileName)
范围类型描述
fileNameString文件的全名。如果具有指定全名的文件已经存在,则覆盖现有文件。

例外

例外(健康)状况
IncorrectDocumentStructureException文档结构违反规范。
UnsupportedSaveFormatException不支持请求的保存格式。

也可以看看


Save(Stream)

将 OneNote 文档保存到流中。

public void Save(Stream stream)
范围类型描述
streamStream流.

例外

例外(健康)状况
IncorrectDocumentStructureException文档结构违反规范。
UnsupportedSaveFormatException不支持请求的保存格式。

也可以看看


Save(string, SaveFormat)

将 OneNote 文档保存为指定格式的文件。

public void Save(string fileName, SaveFormat format)
范围类型描述
fileNameString文件的全名。如果具有指定全名的文件已经存在,则覆盖现有文件。
formatSaveFormat保存文档的格式。

例外

例外(健康)状况
IncorrectDocumentStructureException文档结构违反规范。
UnsupportedSaveFormatException不支持请求的保存格式。

也可以看看


Save(Stream, SaveFormat)

以指定格式将 OneNote 文档保存到流中。

public void Save(Stream stream, SaveFormat format)
范围类型描述
streamStream流.
formatSaveFormat保存文档的格式。

例外

例外(健康)状况
IncorrectDocumentStructureException文档结构违反规范。
UnsupportedSaveFormatException不支持请求的保存格式。

也可以看看


Save(string, NotebookSaveOptions)

使用指定的保存选项将 OneNote 文档保存到文件。

public void Save(string fileName, NotebookSaveOptions options)
范围类型描述
fileNameString文件的全名。如果具有指定全名的文件已经存在,则覆盖现有文件。
optionsNotebookSaveOptions指定文档如何保存在文件中的选项。

例外

例外(健康)状况
IncorrectDocumentStructureException文档结构违反规范。
UnsupportedSaveFormatException不支持请求的保存格式。

也可以看看


Save(Stream, NotebookSaveOptions)

使用指定的保存选项将 OneNote 文档保存到流中。

public void Save(Stream stream, NotebookSaveOptions options)
范围类型描述
streamStream流.
optionsNotebookSaveOptions指定如何保存文档的选项。

例外

例外(健康)状况
IncorrectDocumentStructureException文档结构违反规范。
UnsupportedSaveFormatException不支持请求的保存格式。

也可以看看