/// <summary> /// Initializes a new instance of DocumentSelectionMark. Used by the <see cref="DocumentAnalysisModelFactory"/>. /// </summary> internal DocumentSelectionMark(SelectionMarkState state, BoundingBox boundingBox, DocumentSpan span, float confidence) { State = state; BoundingBox = boundingBox; Span = span; Confidence = confidence; }
/// <summary> /// Initializes a new instance of DocumentSelectionMark. Used by the <see cref="DocumentAnalysisModelFactory"/>. /// </summary> internal DocumentSelectionMark(SelectionMarkState state, BoundingPolygon boundingPolygon, DocumentSpan span, float confidence) { State = state; BoundingPolygon = boundingPolygon; Span = span; Confidence = confidence; }
internal FormSelectionMark(FieldBoundingBox boundingBox, int pageNumber, string text, float confidence, SelectionMarkState state) : base(boundingBox, pageNumber, text) { Confidence = confidence; State = state; }