class Hpdf::Cell

Overview

The cell is the smallest part of the Table. It is rendered before all grids in the order it was inserted into the Row and Table.

Defined in:

hpdf/table.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(*, span : Number = 1, &block : Page, Rectangle -> ) #

Creates a cell with the provided block to render. The block provides a reference to the page and a rectange of the cell.

  • span a cell can expand more then one cell (in the right direction) the default value 1 means no extend

[View source]

Instance Method Detail

def block : Hpdf::Page, Hpdf::Rectangle -> Nil #

[View source]
def block=(block : Hpdf::Page, Hpdf::Rectangle -> _) #

[View source]
def span : Float32 #

[View source]
def span=(span : Float32) #

[View source]