Uses of Class
com.azure.ai.formrecognizer.models.FormElement
Packages that use FormElement
Package
Description
Package containing classes for FormRecognizerClient.
-
Uses of FormElement in com.azure.ai.formrecognizer.models
Subclasses of FormElement in com.azure.ai.formrecognizer.modelsModifier and TypeClassDescriptionfinal classThe FieldData model.final classRepresents a line of text and its appearance.final classRepresents a selection mark recognized from the input document.final classRepresents a cell contained in a table recognized from the input document.final classRepresents a word recognized from the input document.Methods in com.azure.ai.formrecognizer.models that return types with arguments of type FormElementModifier and TypeMethodDescriptionFieldData.getFieldElements()When `includeFieldElements` is set to true, gets a list of reference elements constituting thisFieldData.FormTableCell.getFieldElements()When includeFieldElements is set to true, gets the list of references to the elements constituting this table cell.Constructor parameters in com.azure.ai.formrecognizer.models with type arguments of type FormElementModifierConstructorDescriptionFieldData(String text, FieldBoundingBox boundingBox, int pageNumber, List<FormElement> fieldElements) Creates raw OCR FieldData item.FormTableCell(int rowIndex, int columnIndex, int rowSpan, int columnSpan, String text, FieldBoundingBox boundingBox, float confidence, boolean isHeader, boolean isFooter, int pageNumber, List<FormElement> fieldElements) Constructs a FormTableCell object.