你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

Notebook 构造函数

定义

初始化 Notebook 的新实例。

public Notebook (Azure.Analytics.Synapse.Artifacts.Models.NotebookMetadata metadata, int notebookFormat, int notebookFormatMinor, System.Collections.Generic.IEnumerable<Azure.Analytics.Synapse.Artifacts.Models.NotebookCell> cells);
new Azure.Analytics.Synapse.Artifacts.Models.Notebook : Azure.Analytics.Synapse.Artifacts.Models.NotebookMetadata * int * int * seq<Azure.Analytics.Synapse.Artifacts.Models.NotebookCell> -> Azure.Analytics.Synapse.Artifacts.Models.Notebook
Public Sub New (metadata As NotebookMetadata, notebookFormat As Integer, notebookFormatMinor As Integer, cells As IEnumerable(Of NotebookCell))

参数

metadata
NotebookMetadata

笔记本根级元数据。

notebookFormat
Int32

笔记本格式 (主数字) 。 在笔记本格式的向后不兼容更改之间递增。

notebookFormatMinor
Int32

笔记本格式 (次要数字) 。 递增,以便对笔记本格式进行向后兼容更改。

cells
IEnumerable<NotebookCell>

当前笔记本的单元格数组。

例外

metadatacells 为 null。

适用于