# CharacterResult

The `CharacterResult` class represents the result of a character recognition process. It contains the characters recognized (high, medium, and low confidence), their respective confidences, and the location of the character in a quadrilateral shape.

## Definition

*Namespace:* Dynamsoft.DLR


```csharp
public class CharacterResult
```

## Attributes
  
| Attribute | Type |
|---------- | ---- |
| [`characterH`](#characterh) | *char* |
| [`characterM`](#characterm) | *char* |
| [`characterL`](#characterl) | *char* |
| [`location`](#location) | *Quadrilateral* |
| [`characterHConfidence`](#characterhconfidence) | *int* |
| [`characterMConfidence`](#charactermconfidence) | *int* |
| [`characterLConfidence`](#characterlconfidence) | *int* |

### characterH

The character with high confidence.

```csharp
char characterH;
```

### characterM

The character with medium confidence.

```csharp
char characterM;
```

### characterL

The character with low confidence.

```csharp
char characterL;
```

### location

The location of the character in a quadrilateral shape.

```csharp
Quadrilateral location;
```

**See Also**

[Quadrilateral](https://www.dynamsoft.com/capture-vision/docs/server/programming/dotnet/api-reference/core/basic-classes/quadrilateral.md)

### characterHConfidence

The confidence of the character with high confidence.

```csharp
int characterHConfidence;
```

### characterMConfidence

The confidence of the character with medium confidence.

```csharp
int characterMConfidence;
```

### characterLConfidence

The confidence of the character with low confidence.

```csharp
int characterLConfidence;
```
