|
SOLUTIONS
|
BUILT-IN MATHEMATICA SYMBOL
NotebookWrite[notebook, data]
writes data into a notebook at the current selection, setting the current selection to be just after the data written.
NotebookWrite[cell, data]
replaces the given cell instead of the current selection.
NotebookWrite[notebook, data, sel]
writes data into a notebook, setting the current selection to be as specified by sel.
Details and OptionsDetails and Options
- The first argument of NotebookWrite can be a NotebookObject or a CellObject.
- NotebookWrite to a NotebookObject does essentially the same as a Paste operation in the front end: it replaces whatever the current selection in the notebook is by data.
- NotebookWrite to a CellObject replaces the given cell with the specified content. If no third argument is specified and the selection is not inside the cell, it does this without disturbing the current selection.
- NotebookWrite is the basic way to use the Mathematica kernel to modify the contents of notebooks that are being manipulated by the front end.
- NotebookWrite automatically wraps Cell around the data you specify if this is necessary.
- Possible settings for sel are:
-
After place the current selection immediately after the data written All make the current selection be the data written Before place the current selection immediately before the data written None leave the current selection unchanged Placeholder make the current selection be the first placeholder in the data written - The default for sel is
, so that NotebookWrite[obj, data] can be called repeatedly to insert several pieces of data in sequence.
New in 3 | Last modified in 9
Mathematica 9 is now available!
New to Mathematica?
Find your learning path »
Have a question?
Ask support »
