# `PdfElixide.Document.TextLine`
[🔗](https://github.com/r8/pdf_elixide/blob/v0.16.0/lib/pdf_elixide/document/text_line.ex#L1)

A single line of text extracted from a PDF page, with its zero-based page
index, bounding box, and constituent words.

# `t`

```elixir
@type t() :: %PdfElixide.Document.TextLine{
  bbox: PdfElixide.Geometry.Rect.t(),
  page: non_neg_integer(),
  text: String.t(),
  words: [PdfElixide.Document.Word.t()]
}
```

---

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