class PdflibMini::Handle::TableCell
Constants
- INFO_KEYWORD
Public Class Methods
new(table_cell, p)
click to toggle source
Calls superclass method
# File lib/pdflib_mini/handle/table_cell.rb, line 15 def initialize(table_cell, p) super(table_cell) @p = p end
Public Instance Methods
delete_table(*args)
click to toggle source
5.3 Table Formatting delete_table
(int table, string optlist)
# File lib/pdflib_mini/handle/table_cell.rb, line 34 def delete_table(*args) @p.delete_table(self, *args) end
fit_table(*args)
click to toggle source
5.3 Table Formatting string fit_table
(int table, float llx, float lly, float urx, float ury, string optlist)
# File lib/pdflib_mini/handle/table_cell.rb, line 22 def fit_table(*args) @p.fit_table(self, *args) end
info_table(keyword, _)
click to toggle source
5.3 Table Formatting float info_table
(int table, string keyword)
# File lib/pdflib_mini/handle/table_cell.rb, line 28 def info_table(keyword, _) @p.info_table(self, keyword) end