class Coopy::CombinedTableHead
Attributes
all[RW]
dx[RW]
dy[RW]
parent[RW]
Public Class Methods
new(parent,dx,dy)
click to toggle source
# File lib/lib/coopy/combined_table_head.rb, line 7 def initialize(parent,dx,dy) @parent = parent @dx = dx @dy = dy @all = parent.all end
Public Instance Methods
clear()
click to toggle source
# File lib/lib/coopy/combined_table_head.rb, line 69 def clear end
clone()
click to toggle source
# File lib/lib/coopy/combined_table_head.rb, line 88 def clone nil end
create()
click to toggle source
# File lib/lib/coopy/combined_table_head.rb, line 92 def create nil end
get_cell(x,y)
click to toggle source
# File lib/lib/coopy/combined_table_head.rb, line 40 def get_cell(x,y) if x == 0 v = self.get_cell_view txt = v.to_s(@all.get_cell(x,y)) return txt[1,txt.length] if txt[0] == "@" end @all.get_cell(x,y) end
get_cell_view()
click to toggle source
# File lib/lib/coopy/combined_table_head.rb, line 57 def get_cell_view @all.get_cell_view end
get_data()
click to toggle source
# File lib/lib/coopy/combined_table_head.rb, line 84 def get_data nil end
get_height()
click to toggle source
# File lib/lib/coopy/combined_table_head.rb, line 36 def get_height @dy end
get_meta()
click to toggle source
# File lib/lib/coopy/combined_table_head.rb, line 96 def get_meta nil end
get_table()
click to toggle source
# File lib/lib/coopy/combined_table_head.rb, line 23 def get_table self end
get_width()
click to toggle source
# File lib/lib/coopy/combined_table_head.rb, line 32 def get_width @all.get_width end
height()
click to toggle source
# File lib/lib/coopy/combined_table_head.rb, line 27 def height() get_height end
height=(__v)
click to toggle source
# File lib/lib/coopy/combined_table_head.rb, line 28 def height=(__v) @height = __v end
insert_or_delete_columns(fate,wfate)
click to toggle source
# File lib/lib/coopy/combined_table_head.rb, line 76 def insert_or_delete_columns(fate,wfate) @all.insert_or_delete_columns(fate,wfate) end
insert_or_delete_rows(fate,hfate)
click to toggle source
# File lib/lib/coopy/combined_table_head.rb, line 72 def insert_or_delete_rows(fate,hfate) false end
is_resizable()
click to toggle source
# File lib/lib/coopy/combined_table_head.rb, line 61 def is_resizable false end
resize(w,h)
click to toggle source
# File lib/lib/coopy/combined_table_head.rb, line 65 def resize(w,h) false end
set_cell(x,y,c)
click to toggle source
# File lib/lib/coopy/combined_table_head.rb, line 49 def set_cell(x,y,c) @all.set_cell(x,y,c) end
to_s()
click to toggle source
# File lib/lib/coopy/combined_table_head.rb, line 53 def to_s ::Coopy::SimpleTable.table_to_string(self) end
trim_blank()
click to toggle source
# File lib/lib/coopy/combined_table_head.rb, line 80 def trim_blank false end
width()
click to toggle source
# File lib/lib/coopy/combined_table_head.rb, line 29 def width() get_width end
width=(__v)
click to toggle source
# File lib/lib/coopy/combined_table_head.rb, line 30 def width=(__v) @width = __v end