PxUiOcrEditorScreenResult.finished(editedText:attributedText:) Case

case finished(editedText: String, attributedText: NSAttributedString)

The user dismissed the editor. editedText is the final plain text; attributedText carries the same text WITH its attributes (confidence colours on unedited spans, neutral on typed runs) — hold it and pass it back as the session’s seedText to preserve colours across a re-open.

Top