Notebook.Save
Save(string)
Saves the OneNote document to a file.
public void Save(string fileName)
Parameter | Type | Description |
---|
fileName | String | The full name for the file. If a file with the specified full name already exists, the existing file is overwritten. |
Exceptions
See Also
Save(Stream)
Saves the OneNote document to a stream.
public void Save(Stream stream)
Parameter | Type | Description |
---|
stream | Stream | The stream. |
Exceptions
See Also
Save(string, SaveFormat)
Saves the OneNote document to a file in the specified format.
public void Save(string fileName, SaveFormat format)
Parameter | Type | Description |
---|
fileName | String | The full name for the file. If a file with the specified full name already exists, the existing file is overwritten. |
format | SaveFormat | The format in which to save the document. |
Exceptions
See Also
Save(Stream, SaveFormat)
Saves the OneNote document to a stream in the specified format.
public void Save(Stream stream, SaveFormat format)
Parameter | Type | Description |
---|
stream | Stream | The stream. |
format | SaveFormat | The format in which to save the document. |
Exceptions
See Also
Save(string, NotebookSaveOptions)
Saves the OneNote document to a file using the specified save options.
public void Save(string fileName, NotebookSaveOptions options)
Parameter | Type | Description |
---|
fileName | String | The full name for the file. If a file with the specified full name already exists, the existing file is overwritten. |
options | NotebookSaveOptions | Specifies the options how the document is saved in file. |
Exceptions
See Also
Save(Stream, NotebookSaveOptions)
Saves the OneNote document to a stream using the specified save options.
public void Save(Stream stream, NotebookSaveOptions options)
Parameter | Type | Description |
---|
stream | Stream | The stream. |
options | NotebookSaveOptions | Specifies the options how the document is saved. |
Exceptions
See Also