> For the complete documentation index, see [llms.txt](https://docs.facephi.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.facephi.com/docs.facephi-en/sdks/sdk-web/componentes/selphid-documentos/propiedades/barcodeside.md).

# barcodeSide

## Details

**Attribute:** `barcode-side`

**Type:** `BarcodeSide`

**Default value:** `BarcodeSide.Both`

### BarcodeSide

| Member  | Value | Description |
| ------- | ----- | ----------- |
| `Front` | `0`   | Front.      |
| `Back`  | `1`   | Back.       |
| `Both`  | `2`   | Both sides. |

## Morphology

```typescript
import { BarcodeSide } from '@facephi/selphid-web-component';

selphid.barcodeSide = BarcodeSide.Both;
```

## Description

Document side (front, back, or both) on which `facephi-selphid-widget` codes are searched for.

***

## Example

```jsx
import { BarcodeSide } from '@facephi/selphid-web-component';

<facephi-selphid-widget
    barcode={true}
    barcodeSide={BarcodeSide.Both}
/>
```
