Notebook.LoadChildNotebook

LoadChildNotebook(string)

Adds a child notebook node. Opens an existing OneNote notebook from a file.

public void LoadChildNotebook(string filePath)
ParameterTypeDescription
filePathStringThe file path.

See Also


LoadChildNotebook(string, NotebookLoadOptions)

Adds a child notebook node. Opens an existing OneNote notebook from a file. Allows to specify additional load options.

public void LoadChildNotebook(string filePath, NotebookLoadOptions loadOptions)
ParameterTypeDescription
filePathStringThe file path.
loadOptionsNotebookLoadOptionsThe load options.

See Also


LoadChildNotebook(Stream)

Adds a child notebook node. Opens an existing OneNote notebook from a stream.

public void LoadChildNotebook(Stream stream)
ParameterTypeDescription
streamStreamThe stream.

See Also


LoadChildNotebook(Stream, NotebookLoadOptions)

Adds a child notebook node. Opens an existing OneNote notebook from a stream. Allows to specify additional load options.

public void LoadChildNotebook(Stream stream, NotebookLoadOptions loadOptions)
ParameterTypeDescription
streamStreamThe stream.
loadOptionsNotebookLoadOptionsThe load options.

See Also