You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ORPA-pyOpenRPA/Resources/WPy64-3720/python-3.7.2.amd64/Lib/site-packages/jupyter_contrib_nbextensions/nbextensions/freeze/readme.md

830 B

Freeze

This extension allows to make cells read-only or frozen. It provides three buttons:

  • unlock
  • read-only
  • frozen

For code-cells:
read-only: it can be executed, but its input cannot be changed.
frozen: It cannot be either altered or executed.

For markdown-cells:
read-only: It's input can be viewed by double-clicking on it, but cannot be changed.
frozen: Input cannot be viewed by double-clicking.

To change the state of a selected cell, press the corresponding button.

The individual cell's state is stored in its metadata and is applied to the cell if the extension is loaded.

##Internals

The read-only state is stored in the cell.metadata.editable attribute. Cells are editable by default. The frozen state is stored in the cell.metadata.run_control.frozenattribute.