public sealed class TextChange : IMessage<Document.Types.TextChange>, IEquatable<Document.Types.TextChange>, IDeepCloneable<Document.Types.TextChange>, IBufferMessage, IMessage
This message is used for text changes aka. OCR corrections.
public Document.Types.TextAnchor TextAnchor { get; set; }
Provenance of the correction.
Text anchor indexing into the [Document.text][google.cloud.documentai.v1.Document.text]. There can only be a
single TextAnchor.text_segments element. If the start and
end index of the text segment are the same, the text change is inserted
before that index.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-21 UTC."],[[["This webpage details the `TextChange` class within the `Google.Cloud.DocumentAI.V1` namespace, which is used for representing text changes, such as Optical Character Recognition (OCR) corrections, in document processing."],["The `TextChange` class implements several interfaces, including `IMessage`, `IEquatable`, `IDeepCloneable`, and `IBufferMessage`, providing functionality for message handling, equality comparison, deep cloning, and buffer manipulation."],["The class offers two constructors: a default constructor `TextChange()` and another constructor `TextChange(Document.Types.TextChange other)` that takes another instance of `TextChange` as an argument to clone it."],["`TextChange` includes three main properties: `ChangedText`, which holds the replacement text; `Provenance`, which maintains a history of the annotation; and `TextAnchor`, which indicates the location of the change in the document text."],["The page lists the history of versions for this class, with version 3.19.0 being the latest one, and version 1.0.0 being the oldest listed."]]],[]]