PdfElixide.Document.Table.Cell (pdf_elixide v0.7.0)

Copy Markdown View Source

A single cell of a detected table, with its text, geometry, spans, and grid placement.

Summary

Types

t()

@type t() :: %PdfElixide.Document.Table.Cell{
  bbox: PdfElixide.Geometry.Rect.t() | nil,
  colspan: pos_integer(),
  header?: boolean(),
  mcids: [non_neg_integer()],
  rowspan: pos_integer(),
  spans: [PdfElixide.Document.Span.t()],
  text: String.t()
}