VS Code API
    Preparing search index...

    Class NotebookCellData

    NotebookCellData is the raw representation of notebook cells. Its is part of NotebookData.

    Index

    Constructors

    • Create new cell data. Minimal cell data specifies its kind, its source value, and the language identifier of its source.

      Parameters

      • kind: NotebookCellKind

        The kind.

      • value: string

        The source value.

      • languageId: string

        The language identifier of the source value.

      Returns NotebookCellData

    Properties

    executionSummary?: NotebookCellExecutionSummary

    The execution summary of this cell data.

    The kind of this cell data.

    languageId: string

    The language identifier of the source value of this cell data. Any value from getLanguages is possible.

    metadata?: { [key: string]: any }

    Arbitrary metadata of this cell data. Can be anything but must be JSON-stringifyable.

    outputs?: NotebookCellOutput[]

    The outputs of this cell data.

    value: string

    The source value of this cell data - either source code or formatted text.