The options used to initialize a CodeCellModel.

interface IOptions {
    contentFactory?: CodeCellModel.IContentFactory;
    id?: string;
    sharedModel?: ISharedCodeCell;
    trusted?: boolean;
}

Hierarchy

Properties

The factory for output area model creation.

id?: string

A unique identifier for the model.

sharedModel?: ISharedCodeCell

The cell shared model.

trusted?: boolean

Whether the cell is trusted or not.