CDFInformation[expr] gives a list of properties relevant to a CDF deployed with the content expr.CDFInformation[notebook] gives usage properties for a CDF to be deployed from ...
Delete
(Built-in Mathematica Symbol) Delete[expr, n] deletes the element at position n in expr. If n is negative, the position is counted from the end. Delete[expr, {i, j, ...}] deletes the part at position {i, ...
Dispatch[{lhs_1 -> rhs_1, lhs_2 -> rhs_2, ...}] generates an optimized dispatch table representation of a list of rules. The object produced by Dispatch can be used to give ...
FreeQ
(Built-in Mathematica Symbol) FreeQ[expr, form] yields True if no subexpression in expr matches form, and yields False otherwise. FreeQ[expr, form, levelspec] tests only those parts of expr on levels ...
Insert
(Built-in Mathematica Symbol) Insert[list, elem, n] inserts elem at position n in list. If n is negative, the position is counted from the end. Insert[expr, elem, {i, j, ...}] inserts elem at position {i, ...
Names
(Built-in Mathematica Symbol) Names["string"] gives a list of the names of symbols which match the string. Names[patt] gives a list of names matching the arbitrary string pattern patt.
NotebookApply[notebook, data] writes data into a notebook at the current selection, replacing the first selection placeholder in data by the current selection, and then ...
NotebookDirectory[] gives the directory of the current evaluation notebook. NotebookDirectory[nb] gives the directory for the notebook specified by nb.
NotebookFind[notebook, data] sets the current selection in the specified notebook object to be the next occurrence of data. NotebookFind[notebook, data, Previous] sets the ...
NotebookLocate["tag"] locates all cells with the specified tag in your current input notebook, selecting the cells and scrolling to the position of the first one. ...