Class: Writexlsx::Table
- Inherits:
-
Object
- Object
- Writexlsx::Table
- Includes:
- Utility
- Defined in:
- lib/write_xlsx/chart.rb
Constant Summary
Constants included from Utility
Utility::COL_MAX, Utility::ROW_MAX, Utility::SHEETNAME_MAX, Utility::STR_MAX
Instance Attribute Summary collapse
-
#horizontal ⇒ Object
readonly
Returns the value of attribute horizontal.
-
#outline ⇒ Object
readonly
Returns the value of attribute outline.
-
#show_keys ⇒ Object
readonly
Returns the value of attribute show_keys.
-
#vertical ⇒ Object
readonly
Returns the value of attribute vertical.
Instance Method Summary collapse
-
#initialize(params = {}) ⇒ Table
constructor
A new instance of Table.
- #write_d_table(writer) ⇒ Object
Methods included from Utility
#absolute_char, #check_dimensions, #check_dimensions_and_update_max_min_values, #check_parameter, #convert_date_time, #dash_types, delete_files, #fill_properties, #float_to_str, #layout_properties, #line_fill_properties, #line_properties, #palette_color, #pixels_to_points, #ptrue?, #put_deprecate_message, #r_id_attributes, #row_col_notation, #shape_style_base, #store_col_max_min_values, #store_row_max_min_values, #substitute_cellref, #underline_attributes, #v_shape_attributes_base, #v_shape_style_base, #value_or_raise, #write_anchor, #write_auto_fill, #write_color, #write_comment_path, #write_div, #write_fill, #write_font, #write_stroke, #write_xml_declaration, #xl_cell_to_rowcol, #xl_col_to_name, #xl_range, #xl_range_formula, #xl_rowcol_to_cell, #xml_str
Constructor Details
#initialize(params = {}) ⇒ Table
Returns a new instance of Table.
14 15 16 17 18 19 20 |
# File 'lib/write_xlsx/chart.rb', line 14 def initialize(params = {}) @horizontal, @vertical, @outline, @show_keys = true, true, true, false @horizontal = params[:horizontal] if params.has_key?(:horizontal) @vertical = params[:vertical] if params.has_key?(:vertical) @outline = params[:outline] if params.has_key?(:outline) @show_keys = params[:show_keys] if params.has_key?(:show_keys) end |
Instance Attribute Details
#horizontal ⇒ Object (readonly)
Returns the value of attribute horizontal.
12 13 14 |
# File 'lib/write_xlsx/chart.rb', line 12 def horizontal @horizontal end |
#outline ⇒ Object (readonly)
Returns the value of attribute outline.
12 13 14 |
# File 'lib/write_xlsx/chart.rb', line 12 def outline @outline end |
#show_keys ⇒ Object (readonly)
Returns the value of attribute show_keys.
12 13 14 |
# File 'lib/write_xlsx/chart.rb', line 12 def show_keys @show_keys end |
#vertical ⇒ Object (readonly)
Returns the value of attribute vertical.
12 13 14 |
# File 'lib/write_xlsx/chart.rb', line 12 def vertical @vertical end |
Instance Method Details
#write_d_table(writer) ⇒ Object
22 23 24 25 26 27 28 29 |
# File 'lib/write_xlsx/chart.rb', line 22 def write_d_table(writer) writer.tag_elements('c:dTable') do writer.empty_tag('c:showHorzBorder', attributes) if ptrue?(horizontal) writer.empty_tag('c:showVertBorder', attributes) if ptrue?(vertical) writer.empty_tag('c:showOutline', attributes) if ptrue?(outline) writer.empty_tag('c:showKeys', attributes) if ptrue?(show_keys) end end |