class PdfTempura::Document::Table::Column

Attributes

height[R]
name[R]
options[R]
width[R]

Public Class Methods

new(name, width, height, options = {}) click to toggle source
# File lib/pdf_tempura/document/table/column.rb, line 6
def initialize(name, width, height, options = {})
  @name = name
  @width = width
  @height = height
  @options = options
end

Public Instance Methods

generates_field?() click to toggle source
# File lib/pdf_tempura/document/table/column.rb, line 13
def generates_field?
  true
end