---
layout: default-layout
title: RawTextLineStatus - Dynamsoft LabelRecognizer Python Enumerations
description: "Explore RawTextLineStatus values in Dynamsoft Label Recognizer Python API and learn how they define status, configuration, and processing behavior today."
keywords: Raw Text Line Status
codeAutoHeight: true
---

# Enumeration RawTextLineStatus

`RawTextLineStatus` enumerates the final status of a raw text line.

```python
class EnumRawTextLineStatus(IntEnum):
    # Localized but recognition not performed.
    RTLS_LOCALIZED,
    # Recognition failed.
    RTLS_RECOGNITION_FAILED,
    # Successfully recognized.
    RTLS_RECOGNITION_SUCCEEDED
```
