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

DocumentAnalysisModelFactory.DocumentTableCell 方法

定义

初始化 DocumentTableCell 的新实例。

public static Azure.AI.FormRecognizer.DocumentAnalysis.DocumentTableCell DocumentTableCell (Azure.AI.FormRecognizer.DocumentAnalysis.DocumentTableCellKind kind = default, int rowIndex = 0, int columnIndex = 0, int rowSpan = 0, int columnSpan = 0, string content = default, System.Collections.Generic.IEnumerable<Azure.AI.FormRecognizer.DocumentAnalysis.BoundingRegion> boundingRegions = default, System.Collections.Generic.IEnumerable<Azure.AI.FormRecognizer.DocumentAnalysis.DocumentSpan> spans = default);
static member DocumentTableCell : Azure.AI.FormRecognizer.DocumentAnalysis.DocumentTableCellKind * int * int * int * int * string * seq<Azure.AI.FormRecognizer.DocumentAnalysis.BoundingRegion> * seq<Azure.AI.FormRecognizer.DocumentAnalysis.DocumentSpan> -> Azure.AI.FormRecognizer.DocumentAnalysis.DocumentTableCell
Public Shared Function DocumentTableCell (Optional kind As DocumentTableCellKind = Nothing, Optional rowIndex As Integer = 0, Optional columnIndex As Integer = 0, Optional rowSpan As Integer = 0, Optional columnSpan As Integer = 0, Optional content As String = Nothing, Optional boundingRegions As IEnumerable(Of BoundingRegion) = Nothing, Optional spans As IEnumerable(Of DocumentSpan) = Nothing) As DocumentTableCell

参数

kind
DocumentTableCellKind

表单元格类型。

rowIndex
Int32

单元格的行索引。

columnIndex
Int32

单元格的列索引。

rowSpan
Int32

此单元格跨越的行数。

columnSpan
Int32

此单元格跨越的列数。

content
String

按阅读顺序串联的表单元格的内容。

boundingRegions
IEnumerable<BoundingRegion>

覆盖表单元格的边界区域。

spans
IEnumerable<DocumentSpan>

按阅读顺序串联内容的表单元格的位置。

返回

用于模拟的新 DocumentTableCell 实例。

适用于