# `XlsxReader.Sheet`
[🔗](https://github.com/xavier/xlsx_reader/blob/main/lib/xlsx_reader/sheet.ex#L1)

Worksheet structure.

This structure only contains the information useful to identify and retrieve the sheet actual data.

- `name` - name of the sheet
- `rid` - relationship ID used to retrieve the corresponding sheet in the archive
- `sheet_id` - unique identifier of the sheet withing the workbook (unused by XlsxReader)

To access the sheet cells, see `XlsxReader.sheet/3` and `XlsxReader.sheets/2`.

# `t`

```elixir
@type t() :: %XlsxReader.Sheet{
  name: String.t(),
  rid: String.t(),
  sheet_id: String.t()
}
```

XLSX worksheet metadata

---

*Consult [api-reference.md](api-reference.md) for complete listing*
