# LocalizedBarcodeElement

A localized element within a barcode. It extends `RegionObjectElement` and includes additional properties `possibleFormats`, `possibleFormatsString`, `angle`, `moduleSize` and `confidence`.

```typescript
interface LocalizedBarcodeElement extends Core.RegionObjectElement {
    possibleFormats: EnumBarcodeFormat;
    possibleFormatsString: string;
    angle: number;
    moduleSize: number;
    confidence: number;
}
```
<!-- 
| Properties                                      | Type                |
| ----------------------------------------------- | ------------------- |
| [possibleFormats](#possibleformats)             | *EnumBarcodeFormat* |
| [possibleFormatsString](#possibleformatsstring) | *string*            |
| [angle](#angle)                                 | *number*            |
| [moduleSize](#modulesize)                       | *number*            |
| [confidence](#confidence)                       | *number*            | -->

## possibleFormats

The possible formats or barcode types that the localized element could correspond to.

```typescript
possibleFormats: EnumBarcodeFormat;
```

**See also**

* [EnumBarcodeFormat](https://www.dynamsoft.com/barcode-reader/docs/web/programming/javascript/api-reference/enum-barcode-format.md)

## possibleFormatsString

A string that provides a human-readable representation of the possible barcode formats.

```typescript
possibleFormatsString: string;
```

## angle

The angle or orientation of the localized barcode element. It indicates how the element is positioned or rotated within the barcode.

```typescript
angle: number;
```

## moduleSize

The size of the individual modules or elements within the localized barcode element.

```typescript
moduleSize: number;
```

## confidence

The confidence score or reliability of the localization of the barcode element.

```typescript
confidence: number;
```