|
|
||
|
|
| Built-in Mathematica Symbol | Tutorials »|See Also »|More About » |
| Dynamic[expr] represents an object that displays as the dynamically updated current value of expr. If the displayed form of Dynamic[expr] is interactively changed or edited, an assignment expr=val is done to give expr the new value val that corresponds to the displayed form. |
| Dynamic[expr, None] does not allow interactive changing or editing. |
| Dynamic[expr, f] continually evaluates f[val, expr] during interactive changing or editing of val. |
| Dynamic[expr, {f, fend}] also evaluates fend[val, expr] when interactive changing or editing is complete. |
| Dynamic[expr, {fstart, f, fend}] also evaluates fstart[val, expr] when interactive changing or editing begins. |
| Automatic | assign values using Set | |
| None | perform no action | |
| Temporary | allow interactive operations to make temporary changes | |
| func | evaluate func[val, expr] |
| Deinitialization | None | an expression to evaluate when the Dynamic can no longer be displayed | |
| Editable | False | whether to allow the textual display of Dynamic to be edited | |
| Evaluator | Automatic | the kernel to use for evaluations | |
| Initialization | None | an expression to evaluate when the Dynamic is first displayed | |
| ShrinkingDelay | 0. | how long to delay before shrinking if the displayed object gets smaller | |
| TrackedSymbols | All | symbols whose changes trigger an update | |
| UpdateInterval | Infinity | time interval at which to do updates |