WLJS LogoWLJS Notebook

NotebookRead

Reads the content for the notebook or from a given cell

Blocking function. Avoid using it in timers like SetTimeout, external event handlers such as InputButton or Button, or within AsyncFunction. Use NotebookReadAsync instead.

Syntax

Read focused cell:

NotebookRead[notebook_RemoteNotebook]

Read multiple items:

NotebookRead[{item1, item2, ...}]

Read cell content:

NotebookRead[cell_RemoteCellObj]

Read notebook storage:

NotebookRead[store_NotebookStore]

For example:

NotebookRead[NotebookFocusedCell[]]

On this page