你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
FormTableCell 类
- java.
lang. Object - com.
azure. ai. formrecognizer. models. FormElement - com.
azure. ai. formrecognizer. models. FormTableCell
- com.
- com.
public final class FormTableCell
extends FormElement
表示从输入文档识别的表格中包含的单元格。
构造函数摘要
方法摘要
修饰符和类型 | 方法和描述 |
---|---|
Field |
getBoundingBox()
|
int |
getColumnIndex()
获取单元格的列索引。 |
int |
getColumnSpan()
获取此单元格跨越的列数。 |
float |
getConfidence()
获取单元格的已识别文本的置信度值。 |
List<Form |
getFieldElements()
当 include |
int |
getPageNumber()
获取输入文档中从 1 开始的页码。 |
int |
getRowIndex()
获取单元格的行索引。 |
int |
getRowSpan()
获取此单元格跨越的行数。 |
String |
getText()
表单元素的文本内容。 |
boolean |
isFooter()
如果当前单元格是页脚单元格,则获取布尔值。 |
boolean |
isHeader()
如果当前单元格是标题单元格,则获取布尔值。 |
方法继承自 FormElement
方法继承自 java.lang.Object
构造函数详细信息
FormTableCell
public FormTableCell(int rowIndex, int columnIndex, int rowSpan, int columnSpan, String text, FieldBoundingBox boundingBox, float confidence, boolean isHeader, boolean isFooter, int pageNumber, List
构造 FormTableCell 对象。
Parameters:
方法详细信息
getBoundingBox
public FieldBoundingBox getBoundingBox()
元素的 BoundingBox 属性。
Overrides:
FormTableCell.getBoundingBox()getColumnIndex
public int getColumnIndex()
获取单元格的列索引。
Returns:
getColumnSpan
public int getColumnSpan()
获取此单元格跨越的列数。
Returns:
getConfidence
public float getConfidence()
获取单元格的已识别文本的置信度值。
Returns:
getFieldElements
public List
当 includeFieldElements 设置为 true 时,获取对构成此表单元格的元素的引用列表。
Returns:
getPageNumber
public int getPageNumber()
获取输入文档中从 1 开始的页码。
Overrides:
FormTableCell.getPageNumber()getRowIndex
public int getRowIndex()
获取单元格的行索引。
Returns:
getRowSpan
public int getRowSpan()
获取此单元格跨越的行数。
Returns:
getText
public String getText()
表单元素的文本内容。
Overrides:
FormTableCell.getText()isFooter
public boolean isFooter()
如果当前单元格是页脚单元格,则获取布尔值。
Returns:
isHeader
public boolean isHeader()
如果当前单元格是标题单元格,则获取布尔值。
Returns: