Class: Writexlsx::Package::Vml

Inherits:
Object
  • Object
show all
Includes:
Utility
Defined in:
lib/write_xlsx/package/vml.rb

Constant Summary

Constants included from Utility

Utility::COL_MAX, Utility::ROW_MAX, Utility::SHEETNAME_MAX, Utility::STR_MAX

Instance Method Summary collapse

Methods included from Utility

#absolute_char, #check_dimensions, #check_dimensions_and_update_max_min_values, #check_parameter, #convert_date_time, delete_files, #float_to_str, #pixels_to_points, #ptrue?, #put_deprecate_message, #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, #write_anchor, #write_auto_fill, #write_color, #write_comment_path, #write_div, #write_fill, #write_font, #write_stroke, #xl_cell_to_rowcol, #xl_col_to_name, #xl_range, #xl_range_formula, #xl_rowcol_to_cell, #xml_str

Constructor Details

#initializeVml



11
12
13
# File 'lib/write_xlsx/package/vml.rb', line 11

def initialize
  @writer = Package::XMLWriterSimple.new
end

Instance Method Details

#assemble_xml_file(worksheet) ⇒ Object



19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# File 'lib/write_xlsx/package/vml.rb', line 19

def assemble_xml_file(worksheet)
  return unless @writer

  write_xml_namespace do
    # Write the o:shapelayout element.
    write_shapelayout(worksheet.vml_data_id)

    z_index = 1
    vml_shape_id = worksheet.vml_shape_id
    unless worksheet.buttons_data.empty?
      vml_shape_id, z_index =
        write_shape_type_and_shape(
                                   worksheet.buttons_data,
                                   vml_shape_id, z_index) do
        write_button_shapetype
      end
    end
    unless worksheet.comments_array.empty?
      write_shape_type_and_shape(
                                 worksheet.comments_array,
                                 vml_shape_id, z_index) do
        write_comment_shapetype
      end
    end
  end
  @writer.crlf
  @writer.close
end

#set_xml_writer(filename) ⇒ Object



15
16
17
# File 'lib/write_xlsx/package/vml.rb', line 15

def set_xml_writer(filename)
  @writer.set_xml_writer(filename)
end