# RecognizedTextLinesResult

Interface `RecognizedTextLinesResult` represents the overall result(s) of a text recognition process. It provides access to information about the recognized text lines, the original image, and any errors that occurred during the recognition process.

## Definition

*Assembly:* dynamsoft-capture-vision-react-native

```js
interface RecognizedTextLinesResult extends CapturedResultBase
```

## Properties

| Property | Types | Description |
| -------- | ----- | ----------- |
| [`getItems`](#getitems) | *List<TextLineResultItem>* | The text line result(s) recognized from the image/frame in an array of [`TextLineResultItem`](https://www.dynamsoft.com/label-recognition/docs/mobile/programming/react-native/api-reference/text-line-result-item.md). |

The following properties are inherited from [`CapturedResultBase`](https://www.dynamsoft.com/capture-vision/docs/mobile/programming/react-native/api-reference/core/captured-result-base.md):

| Property | Types | Description |
| -------- | ----- | ----------- |
| [`originalImageHashId`](https://www.dynamsoft.com/capture-vision/docs/mobile/programming/react-native/api-reference/core/captured-result-base.md#originalimagehashid) | *String* | The hash id of the original image. |
| [`rotationTransformMatrix`](https://www.dynamsoft.com/capture-vision/docs/mobile/programming/react-native/api-reference/core/captured-result-base.md#rotationtransformmatrix) | *Matrix4* | The rotation transformation matrix of the original image relative to the rotated image. |
| [`errorCode`](https://www.dynamsoft.com/capture-vision/docs/mobile/programming/react-native/api-reference/core/captured-result-base.md#errorcode) | *int* | The error code of this result. |
| [`errorMessage`](https://www.dynamsoft.com/capture-vision/docs/mobile/programming/react-native/api-reference/core/captured-result-base.md#errormessage) | *String* | The error message of this result. |

### getItems

The text line result(s) recognized from the image/frame in an array of [`TextLineResultItem`](https://www.dynamsoft.com/label-recognition/docs/mobile/programming/react-native/api-reference/text-line-result-item.md).

```js
items?: Array<TextLineResultItem>;
```
