Class: Writexlsx::Package::Core
- Inherits:
-
Object
- Object
- Writexlsx::Package::Core
show all
- Includes:
- Utility
- Defined in:
- lib/write_xlsx/package/core.rb
Constant Summary
collapse
- App_package =
'application/vnd.openxmlformats-package.'
- App_document =
'application/vnd.openxmlformats-officedocument.'
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, #dash_types, delete_files, #fill_properties, #float_to_str, #layout_properties, #line_fill_properties, #line_properties, #palette_color, #pixels_to_points, #process_workbook_options, #ptrue?, #put_deprecate_message, #quote_sheetname, #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 ⇒ Core
14
15
16
17
18
|
# File 'lib/write_xlsx/package/core.rb', line 14
def initialize
@writer = Package::XMLWriterSimple.new
@properties = {}
@localtime = [Time.now]
end
|
Instance Method Details
#assemble_xml_file ⇒ Object
24
25
26
27
28
|
# File 'lib/write_xlsx/package/core.rb', line 24
def assemble_xml_file
write_xml_declaration do
write_cp_core_properties { write_cp_core_properties_base }
end
end
|
#set_properties(properties) ⇒ Object
30
31
32
|
# File 'lib/write_xlsx/package/core.rb', line 30
def set_properties(properties)
@properties = properties
end
|
#set_xml_writer(filename) ⇒ Object
20
21
22
|
# File 'lib/write_xlsx/package/core.rb', line 20
def set_xml_writer(filename)
@writer.set_xml_writer(filename)
end
|