Class DocumentSelectionMark
A selection mark object representing check boxes, radio buttons, and other elements indicating a selection.
Inheritance
System.Object
DocumentSelectionMark
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.AI.FormRecognizer.dll
Syntax
public class DocumentSelectionMark
Properties
BoundingPolygon
The polygon that outlines the content of this selection mark. Coordinates are specified relative to the top-left of the page, and points are ordered clockwise from the left relative to the selection mark orientation. Units are in pixels for images and inches for PDF. The LengthUnit type of a recognized page can be found at Unit.
Declaration
public Azure.AI.FormRecognizer.DocumentAnalysis.BoundingPolygon BoundingPolygon { get; }
Property Value
BoundingPolygon
|
Confidence
Confidence of correctly extracting the selection mark.
Declaration
public float Confidence { get; }
Property Value
System.Single
|
Span
Location of the selection mark in the reading order concatenated content.
Declaration
public Azure.AI.FormRecognizer.DocumentAnalysis.DocumentSpan Span { get; }
Property Value
DocumentSpan
|
State
Selection mark state value, like Selected or Unselected.
Declaration
public Azure.AI.FormRecognizer.DocumentAnalysis.SelectionMarkState State { get; }
Property Value
SelectionMarkState
|