Delete Results
You can delete a specific CharacterResult from a TextLineResult or a specific TextLineResult from the TextBlockResult with the TextBlockResult.DeleteTextLine and TextLineResult.DeleteCharacter methods.
![]() |
|
| C# Example | Copy Code |
|---|---|
|
... int textLineIndex = 0; if (myTextBlockResult.NumberTextLines > textLineIndex) { myTextBlockResult.DeleteTextLine( textLineIndex ); } ... | |
| C# Example | Copy Code |
|---|---|
|
... int characterIndex = 0; if (myTextLineResult.NumberCharacters < characterIndex) { myTextLineResult.DeleteCharacter( characterIndex ); } ... | |

