dg-axlsx 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.yardopts +9 -0
- data/.yardopts_guide +19 -0
- data/CHANGELOG.md +239 -0
- data/LICENSE +22 -0
- data/README.md +259 -0
- data/Rakefile +30 -0
- data/examples/2010_comments.rb +17 -0
- data/examples/anchor_swapping.rb +28 -0
- data/examples/auto_filter.rb +25 -0
- data/examples/basic_charts.rb +58 -0
- data/examples/chart_colors.rb +88 -0
- data/examples/colored_links.rb +59 -0
- data/examples/conditional_formatting/example_conditional_formatting.rb +89 -0
- data/examples/conditional_formatting/getting_barred.rb +37 -0
- data/examples/conditional_formatting/hitting_the_high_notes.rb +37 -0
- data/examples/conditional_formatting/scaled_colors.rb +39 -0
- data/examples/conditional_formatting/stop_and_go.rb +37 -0
- data/examples/data_validation.rb +50 -0
- data/examples/example.rb +875 -0
- data/examples/extractive.rb +45 -0
- data/examples/image1.jpeg +0 -0
- data/examples/ios_preview.rb +14 -0
- data/examples/merge_cells.rb +17 -0
- data/examples/no_grid_with_borders.rb +18 -0
- data/examples/page_setup.rb +11 -0
- data/examples/pivot_table.rb +39 -0
- data/examples/pivot_test.rb +63 -0
- data/examples/sheet_protection.rb +10 -0
- data/examples/skydrive/real_example.rb +63 -0
- data/examples/split.rb +16 -0
- data/examples/styles.rb +66 -0
- data/examples/underline.rb +13 -0
- data/examples/wrap_text.rb +21 -0
- data/lib/axlsx.rb +168 -0
- data/lib/axlsx/content_type/abstract_content_type.rb +32 -0
- data/lib/axlsx/content_type/content_type.rb +26 -0
- data/lib/axlsx/content_type/default.rb +25 -0
- data/lib/axlsx/content_type/override.rb +25 -0
- data/lib/axlsx/doc_props/app.rb +235 -0
- data/lib/axlsx/doc_props/core.rb +39 -0
- data/lib/axlsx/drawing/ax_data_source.rb +26 -0
- data/lib/axlsx/drawing/axes.rb +61 -0
- data/lib/axlsx/drawing/axis.rb +190 -0
- data/lib/axlsx/drawing/bar_3D_chart.rb +151 -0
- data/lib/axlsx/drawing/bar_series.rb +82 -0
- data/lib/axlsx/drawing/bubble_chart.rb +59 -0
- data/lib/axlsx/drawing/bubble_series.rb +63 -0
- data/lib/axlsx/drawing/cat_axis.rb +85 -0
- data/lib/axlsx/drawing/chart.rb +269 -0
- data/lib/axlsx/drawing/d_lbls.rb +90 -0
- data/lib/axlsx/drawing/drawing.rb +164 -0
- data/lib/axlsx/drawing/graphic_frame.rb +54 -0
- data/lib/axlsx/drawing/hyperlink.rb +100 -0
- data/lib/axlsx/drawing/line_3D_chart.rb +68 -0
- data/lib/axlsx/drawing/line_chart.rb +99 -0
- data/lib/axlsx/drawing/line_series.rb +110 -0
- data/lib/axlsx/drawing/marker.rb +84 -0
- data/lib/axlsx/drawing/num_data.rb +52 -0
- data/lib/axlsx/drawing/num_data_source.rb +62 -0
- data/lib/axlsx/drawing/num_val.rb +32 -0
- data/lib/axlsx/drawing/one_cell_anchor.rb +98 -0
- data/lib/axlsx/drawing/pic.rb +213 -0
- data/lib/axlsx/drawing/picture_locking.rb +42 -0
- data/lib/axlsx/drawing/pie_3D_chart.rb +47 -0
- data/lib/axlsx/drawing/pie_series.rb +74 -0
- data/lib/axlsx/drawing/scaling.rb +60 -0
- data/lib/axlsx/drawing/scatter_chart.rb +74 -0
- data/lib/axlsx/drawing/scatter_series.rb +84 -0
- data/lib/axlsx/drawing/ser_axis.rb +45 -0
- data/lib/axlsx/drawing/series.rb +69 -0
- data/lib/axlsx/drawing/series_title.rb +23 -0
- data/lib/axlsx/drawing/str_data.rb +42 -0
- data/lib/axlsx/drawing/str_val.rb +32 -0
- data/lib/axlsx/drawing/title.rb +78 -0
- data/lib/axlsx/drawing/two_cell_anchor.rb +92 -0
- data/lib/axlsx/drawing/val_axis.rb +37 -0
- data/lib/axlsx/drawing/view_3D.rb +115 -0
- data/lib/axlsx/drawing/vml_drawing.rb +42 -0
- data/lib/axlsx/drawing/vml_shape.rb +66 -0
- data/lib/axlsx/package.rb +363 -0
- data/lib/axlsx/rels/relationship.rb +129 -0
- data/lib/axlsx/rels/relationships.rb +29 -0
- data/lib/axlsx/stylesheet/border.rb +71 -0
- data/lib/axlsx/stylesheet/border_pr.rb +71 -0
- data/lib/axlsx/stylesheet/cell_alignment.rb +132 -0
- data/lib/axlsx/stylesheet/cell_protection.rb +41 -0
- data/lib/axlsx/stylesheet/cell_style.rb +72 -0
- data/lib/axlsx/stylesheet/color.rb +76 -0
- data/lib/axlsx/stylesheet/dxf.rb +79 -0
- data/lib/axlsx/stylesheet/fill.rb +35 -0
- data/lib/axlsx/stylesheet/font.rb +148 -0
- data/lib/axlsx/stylesheet/gradient_fill.rb +103 -0
- data/lib/axlsx/stylesheet/gradient_stop.rb +37 -0
- data/lib/axlsx/stylesheet/num_fmt.rb +77 -0
- data/lib/axlsx/stylesheet/pattern_fill.rb +73 -0
- data/lib/axlsx/stylesheet/styles.rb +420 -0
- data/lib/axlsx/stylesheet/table_style.rb +54 -0
- data/lib/axlsx/stylesheet/table_style_element.rb +77 -0
- data/lib/axlsx/stylesheet/table_styles.rb +46 -0
- data/lib/axlsx/stylesheet/xf.rb +147 -0
- data/lib/axlsx/util/accessors.rb +64 -0
- data/lib/axlsx/util/constants.rb +397 -0
- data/lib/axlsx/util/mime_type_utils.rb +11 -0
- data/lib/axlsx/util/options_parser.rb +16 -0
- data/lib/axlsx/util/parser.rb +44 -0
- data/lib/axlsx/util/serialized_attributes.rb +89 -0
- data/lib/axlsx/util/simple_typed_list.rb +179 -0
- data/lib/axlsx/util/storage.rb +146 -0
- data/lib/axlsx/util/string.rb +7 -0
- data/lib/axlsx/util/validators.rb +311 -0
- data/lib/axlsx/version.rb +5 -0
- data/lib/axlsx/workbook/defined_name.rb +128 -0
- data/lib/axlsx/workbook/defined_names.rb +21 -0
- data/lib/axlsx/workbook/shared_strings_table.rb +77 -0
- data/lib/axlsx/workbook/workbook.rb +361 -0
- data/lib/axlsx/workbook/workbook_view.rb +78 -0
- data/lib/axlsx/workbook/workbook_views.rb +22 -0
- data/lib/axlsx/workbook/worksheet/auto_filter/auto_filter.rb +77 -0
- data/lib/axlsx/workbook/worksheet/auto_filter/filter_column.rb +94 -0
- data/lib/axlsx/workbook/worksheet/auto_filter/filters.rb +244 -0
- data/lib/axlsx/workbook/worksheet/break.rb +35 -0
- data/lib/axlsx/workbook/worksheet/cell.rb +475 -0
- data/lib/axlsx/workbook/worksheet/cell_serializer.rb +154 -0
- data/lib/axlsx/workbook/worksheet/cfvo.rb +60 -0
- data/lib/axlsx/workbook/worksheet/cfvos.rb +15 -0
- data/lib/axlsx/workbook/worksheet/col.rb +141 -0
- data/lib/axlsx/workbook/worksheet/col_breaks.rb +35 -0
- data/lib/axlsx/workbook/worksheet/color_scale.rb +110 -0
- data/lib/axlsx/workbook/worksheet/cols.rb +20 -0
- data/lib/axlsx/workbook/worksheet/comment.rb +91 -0
- data/lib/axlsx/workbook/worksheet/comments.rb +82 -0
- data/lib/axlsx/workbook/worksheet/conditional_formatting.rb +82 -0
- data/lib/axlsx/workbook/worksheet/conditional_formatting_rule.rb +220 -0
- data/lib/axlsx/workbook/worksheet/conditional_formattings.rb +25 -0
- data/lib/axlsx/workbook/worksheet/data_bar.rb +129 -0
- data/lib/axlsx/workbook/worksheet/data_validation.rb +246 -0
- data/lib/axlsx/workbook/worksheet/data_validations.rb +28 -0
- data/lib/axlsx/workbook/worksheet/date_time_converter.rb +30 -0
- data/lib/axlsx/workbook/worksheet/dimension.rb +64 -0
- data/lib/axlsx/workbook/worksheet/header_footer.rb +52 -0
- data/lib/axlsx/workbook/worksheet/icon_set.rb +81 -0
- data/lib/axlsx/workbook/worksheet/merged_cells.rb +35 -0
- data/lib/axlsx/workbook/worksheet/page_margins.rb +97 -0
- data/lib/axlsx/workbook/worksheet/page_set_up_pr.rb +44 -0
- data/lib/axlsx/workbook/worksheet/page_setup.rb +240 -0
- data/lib/axlsx/workbook/worksheet/pane.rb +139 -0
- data/lib/axlsx/workbook/worksheet/pivot_table.rb +266 -0
- data/lib/axlsx/workbook/worksheet/pivot_table_cache_definition.rb +66 -0
- data/lib/axlsx/workbook/worksheet/pivot_tables.rb +24 -0
- data/lib/axlsx/workbook/worksheet/print_options.rb +39 -0
- data/lib/axlsx/workbook/worksheet/protected_range.rb +47 -0
- data/lib/axlsx/workbook/worksheet/protected_ranges.rb +34 -0
- data/lib/axlsx/workbook/worksheet/rich_text.rb +35 -0
- data/lib/axlsx/workbook/worksheet/rich_text_run.rb +254 -0
- data/lib/axlsx/workbook/worksheet/row.rb +154 -0
- data/lib/axlsx/workbook/worksheet/row_breaks.rb +33 -0
- data/lib/axlsx/workbook/worksheet/selection.rb +101 -0
- data/lib/axlsx/workbook/worksheet/sheet_calc_pr.rb +29 -0
- data/lib/axlsx/workbook/worksheet/sheet_data.rb +27 -0
- data/lib/axlsx/workbook/worksheet/sheet_format_pr.rb +60 -0
- data/lib/axlsx/workbook/worksheet/sheet_pr.rb +79 -0
- data/lib/axlsx/workbook/worksheet/sheet_protection.rb +118 -0
- data/lib/axlsx/workbook/worksheet/sheet_view.rb +213 -0
- data/lib/axlsx/workbook/worksheet/table.rb +102 -0
- data/lib/axlsx/workbook/worksheet/table_style_info.rb +49 -0
- data/lib/axlsx/workbook/worksheet/tables.rb +31 -0
- data/lib/axlsx/workbook/worksheet/worksheet.rb +798 -0
- data/lib/axlsx/workbook/worksheet/worksheet_comments.rb +58 -0
- data/lib/axlsx/workbook/worksheet/worksheet_drawing.rb +58 -0
- data/lib/axlsx/workbook/worksheet/worksheet_hyperlink.rb +74 -0
- data/lib/axlsx/workbook/worksheet/worksheet_hyperlinks.rb +38 -0
- data/lib/dg-axlsx.rb +1 -0
- data/lib/schema/dc.xsd +118 -0
- data/lib/schema/dcmitype.xsd +52 -0
- data/lib/schema/dcterms.xsd +331 -0
- data/lib/schema/dml-chart.xsd +1499 -0
- data/lib/schema/dml-chartDrawing.xsd +146 -0
- data/lib/schema/dml-compatibility.xsd +14 -0
- data/lib/schema/dml-diagram.xsd +1091 -0
- data/lib/schema/dml-lockedCanvas.xsd +11 -0
- data/lib/schema/dml-main.xsd +3048 -0
- data/lib/schema/dml-picture.xsd +23 -0
- data/lib/schema/dml-spreadsheetDrawing.xsd +185 -0
- data/lib/schema/dml-wordprocessingDrawing.xsd +185 -0
- data/lib/schema/opc-contentTypes.xsd +42 -0
- data/lib/schema/opc-coreProperties.xsd +54 -0
- data/lib/schema/opc-digSig.xsd +49 -0
- data/lib/schema/opc-relationships.xsd +33 -0
- data/lib/schema/pml.xsd +1676 -0
- data/lib/schema/shared-additionalCharacteristics.xsd +28 -0
- data/lib/schema/shared-bibliography.xsd +144 -0
- data/lib/schema/shared-commonSimpleTypes.xsd +166 -0
- data/lib/schema/shared-customXmlDataProperties.xsd +25 -0
- data/lib/schema/shared-customXmlSchemaProperties.xsd +18 -0
- data/lib/schema/shared-documentPropertiesCustom.xsd +59 -0
- data/lib/schema/shared-documentPropertiesExtended.xsd +56 -0
- data/lib/schema/shared-documentPropertiesVariantTypes.xsd +195 -0
- data/lib/schema/shared-math.xsd +582 -0
- data/lib/schema/shared-relationshipReference.xsd +25 -0
- data/lib/schema/sml.xsd +4434 -0
- data/lib/schema/vml-main.xsd +569 -0
- data/lib/schema/vml-officeDrawing.xsd +509 -0
- data/lib/schema/vml-presentationDrawing.xsd +12 -0
- data/lib/schema/vml-spreadsheetDrawing.xsd +108 -0
- data/lib/schema/vml-wordprocessingDrawing.xsd +96 -0
- data/lib/schema/wml.xsd +3644 -0
- data/lib/schema/xml.xsd +116 -0
- data/test/benchmark.rb +72 -0
- data/test/content_type/tc_content_type.rb +76 -0
- data/test/content_type/tc_default.rb +16 -0
- data/test/content_type/tc_override.rb +14 -0
- data/test/doc_props/tc_app.rb +43 -0
- data/test/doc_props/tc_core.rb +42 -0
- data/test/drawing/tc_axes.rb +8 -0
- data/test/drawing/tc_axis.rb +112 -0
- data/test/drawing/tc_bar_3D_chart.rb +71 -0
- data/test/drawing/tc_bar_series.rb +37 -0
- data/test/drawing/tc_bubble_chart.rb +44 -0
- data/test/drawing/tc_bubble_series.rb +21 -0
- data/test/drawing/tc_cat_axis.rb +31 -0
- data/test/drawing/tc_cat_axis_data.rb +27 -0
- data/test/drawing/tc_chart.rb +110 -0
- data/test/drawing/tc_d_lbls.rb +57 -0
- data/test/drawing/tc_data_source.rb +23 -0
- data/test/drawing/tc_drawing.rb +80 -0
- data/test/drawing/tc_graphic_frame.rb +27 -0
- data/test/drawing/tc_hyperlink.rb +64 -0
- data/test/drawing/tc_line_3d_chart.rb +47 -0
- data/test/drawing/tc_line_chart.rb +39 -0
- data/test/drawing/tc_line_series.rb +71 -0
- data/test/drawing/tc_marker.rb +44 -0
- data/test/drawing/tc_named_axis_data.rb +27 -0
- data/test/drawing/tc_num_data.rb +31 -0
- data/test/drawing/tc_num_val.rb +29 -0
- data/test/drawing/tc_one_cell_anchor.rb +66 -0
- data/test/drawing/tc_pic.rb +106 -0
- data/test/drawing/tc_picture_locking.rb +72 -0
- data/test/drawing/tc_pie_3D_chart.rb +28 -0
- data/test/drawing/tc_pie_series.rb +32 -0
- data/test/drawing/tc_scaling.rb +36 -0
- data/test/drawing/tc_scatter_chart.rb +48 -0
- data/test/drawing/tc_scatter_series.rb +45 -0
- data/test/drawing/tc_ser_axis.rb +31 -0
- data/test/drawing/tc_series.rb +23 -0
- data/test/drawing/tc_series_title.rb +33 -0
- data/test/drawing/tc_str_data.rb +18 -0
- data/test/drawing/tc_str_val.rb +21 -0
- data/test/drawing/tc_title.rb +49 -0
- data/test/drawing/tc_two_cell_anchor.rb +36 -0
- data/test/drawing/tc_val_axis.rb +24 -0
- data/test/drawing/tc_view_3D.rb +54 -0
- data/test/drawing/tc_vml_drawing.rb +25 -0
- data/test/drawing/tc_vml_shape.rb +106 -0
- data/test/profile.rb +24 -0
- data/test/rels/tc_relationship.rb +44 -0
- data/test/rels/tc_relationships.rb +37 -0
- data/test/stylesheet/tc_border.rb +37 -0
- data/test/stylesheet/tc_border_pr.rb +32 -0
- data/test/stylesheet/tc_cell_alignment.rb +81 -0
- data/test/stylesheet/tc_cell_protection.rb +29 -0
- data/test/stylesheet/tc_cell_style.rb +57 -0
- data/test/stylesheet/tc_color.rb +43 -0
- data/test/stylesheet/tc_dxf.rb +81 -0
- data/test/stylesheet/tc_fill.rb +18 -0
- data/test/stylesheet/tc_font.rb +121 -0
- data/test/stylesheet/tc_gradient_fill.rb +72 -0
- data/test/stylesheet/tc_gradient_stop.rb +31 -0
- data/test/stylesheet/tc_num_fmt.rb +30 -0
- data/test/stylesheet/tc_pattern_fill.rb +43 -0
- data/test/stylesheet/tc_styles.rb +235 -0
- data/test/stylesheet/tc_table_style.rb +44 -0
- data/test/stylesheet/tc_table_style_element.rb +45 -0
- data/test/stylesheet/tc_table_styles.rb +29 -0
- data/test/stylesheet/tc_xf.rb +120 -0
- data/test/tc_axlsx.rb +72 -0
- data/test/tc_helper.rb +10 -0
- data/test/tc_package.rb +233 -0
- data/test/util/tc_mime_type_utils.rb +13 -0
- data/test/util/tc_serialized_attributes.rb +19 -0
- data/test/util/tc_simple_typed_list.rb +77 -0
- data/test/util/tc_validators.rb +210 -0
- data/test/workbook/tc_defined_name.rb +49 -0
- data/test/workbook/tc_shared_strings_table.rb +58 -0
- data/test/workbook/tc_workbook.rb +139 -0
- data/test/workbook/tc_workbook_view.rb +50 -0
- data/test/workbook/worksheet/auto_filter/tc_auto_filter.rb +38 -0
- data/test/workbook/worksheet/auto_filter/tc_filter_column.rb +76 -0
- data/test/workbook/worksheet/auto_filter/tc_filters.rb +50 -0
- data/test/workbook/worksheet/tc_break.rb +49 -0
- data/test/workbook/worksheet/tc_cell.rb +358 -0
- data/test/workbook/worksheet/tc_cfvo.rb +31 -0
- data/test/workbook/worksheet/tc_col.rb +78 -0
- data/test/workbook/worksheet/tc_color_scale.rb +58 -0
- data/test/workbook/worksheet/tc_comment.rb +72 -0
- data/test/workbook/worksheet/tc_comments.rb +57 -0
- data/test/workbook/worksheet/tc_conditional_formatting.rb +224 -0
- data/test/workbook/worksheet/tc_data_bar.rb +46 -0
- data/test/workbook/worksheet/tc_data_validation.rb +265 -0
- data/test/workbook/worksheet/tc_date_time_converter.rb +124 -0
- data/test/workbook/worksheet/tc_header_footer.rb +151 -0
- data/test/workbook/worksheet/tc_icon_set.rb +45 -0
- data/test/workbook/worksheet/tc_page_margins.rb +97 -0
- data/test/workbook/worksheet/tc_page_set_up_pr.rb +15 -0
- data/test/workbook/worksheet/tc_page_setup.rb +143 -0
- data/test/workbook/worksheet/tc_pane.rb +54 -0
- data/test/workbook/worksheet/tc_pivot_table.rb +120 -0
- data/test/workbook/worksheet/tc_pivot_table_cache_definition.rb +54 -0
- data/test/workbook/worksheet/tc_print_options.rb +72 -0
- data/test/workbook/worksheet/tc_protected_range.rb +17 -0
- data/test/workbook/worksheet/tc_rich_text.rb +44 -0
- data/test/workbook/worksheet/tc_rich_text_run.rb +172 -0
- data/test/workbook/worksheet/tc_row.rb +117 -0
- data/test/workbook/worksheet/tc_selection.rb +55 -0
- data/test/workbook/worksheet/tc_sheet_calc_pr.rb +18 -0
- data/test/workbook/worksheet/tc_sheet_format_pr.rb +88 -0
- data/test/workbook/worksheet/tc_sheet_pr.rb +49 -0
- data/test/workbook/worksheet/tc_sheet_protection.rb +117 -0
- data/test/workbook/worksheet/tc_sheet_view.rb +214 -0
- data/test/workbook/worksheet/tc_table.rb +68 -0
- data/test/workbook/worksheet/tc_table_style_info.rb +53 -0
- data/test/workbook/worksheet/tc_worksheet.rb +577 -0
- data/test/workbook/worksheet/tc_worksheet_hyperlink.rb +55 -0
- metadata +583 -0
@@ -0,0 +1,311 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
module Axlsx
|
3
|
+
# Validate a value against a specific list of allowed values.
|
4
|
+
class RestrictionValidator
|
5
|
+
# Perform validation
|
6
|
+
# @param [String] name The name of what is being validatied. This is included in the error message
|
7
|
+
# @param [Array] choices The list of choices to validate against
|
8
|
+
# @param [Any] v The value to be validated
|
9
|
+
# @raise [ArgumentError] Raised if the value provided is not in the list of choices.
|
10
|
+
# @return [Boolean] true if validation succeeds.
|
11
|
+
def self.validate(name, choices, v)
|
12
|
+
raise ArgumentError, (ERR_RESTRICTION % [v.to_s, name, choices.inspect]) unless choices.include?(v)
|
13
|
+
true
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
# Validate that the value provided is between a specific range
|
18
|
+
# Note that no data conversions will be done for you!
|
19
|
+
# Comparisons will be made using < and > or <= and <= when the inclusive parameter is true
|
20
|
+
class RangeValidator
|
21
|
+
# @param [String] name The name of what is being validated
|
22
|
+
# @param [Any] min The minimum allowed value
|
23
|
+
# @param [Any] max The maximum allowed value
|
24
|
+
# @param [Any] value The value to be validated
|
25
|
+
# @param [Boolean] inclusive Flag indicating if the comparison should be inclusive.
|
26
|
+
def self.validate(name, min, max, value, inclusive = true)
|
27
|
+
passes = if inclusive
|
28
|
+
min <= value && value <= max
|
29
|
+
else
|
30
|
+
min < value && value < max
|
31
|
+
end
|
32
|
+
raise ArgumentError, (ERR_RANGE % [value.inspect, min.to_s, max.to_s, inclusive]) unless passes
|
33
|
+
end
|
34
|
+
end
|
35
|
+
# Validates the value against the regular expression provided.
|
36
|
+
class RegexValidator
|
37
|
+
# @param [String] name The name of what is being validated. This is included in the output when the value is invalid
|
38
|
+
# @param [Regexp] regex The regular expression to evaluate
|
39
|
+
# @param [Any] v The value to validate.
|
40
|
+
def self.validate(name, regex, v)
|
41
|
+
raise ArgumentError, (ERR_REGEX % [v.inspect, regex.to_s]) unless (v.respond_to?(:to_s) && v.to_s.match(regex))
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
# Validate that the class of the value provided is either an instance or the class of the allowed types and that any specified additional validation returns true.
|
46
|
+
class DataTypeValidator
|
47
|
+
# Perform validation
|
48
|
+
# @param [String] name The name of what is being validated. This is included in the error message
|
49
|
+
# @param [Array, Class] types A single class or array of classes that the value is validated against.
|
50
|
+
# @param [Block] other Any block that must evaluate to true for the value to be valid
|
51
|
+
# @raise [ArugumentError] Raised if the class of the value provided is not in the specified array of types or the block passed returns false
|
52
|
+
# @return [Boolean] true if validation succeeds.
|
53
|
+
# @see validate_boolean
|
54
|
+
def self.validate(name, types, v, other=false)
|
55
|
+
if other.is_a?(Proc)
|
56
|
+
raise ArgumentError, (ERR_TYPE % [v.inspect, name, types.inspect]) unless other.call(v)
|
57
|
+
end
|
58
|
+
v_class = v.is_a?(Class) ? v : v.class
|
59
|
+
Array(types).each do |t|
|
60
|
+
return if v_class <= t
|
61
|
+
end
|
62
|
+
raise ArgumentError, (ERR_TYPE % [v.inspect, name, types.inspect])
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
|
67
|
+
# Requires that the value can be converted to an integer
|
68
|
+
# @para, [Any] v the value to validate
|
69
|
+
# @raise [ArgumentError] raised if the value cannot be converted to an integer
|
70
|
+
def self.validate_integerish(v)
|
71
|
+
raise ArgumentError, (ERR_INTEGERISH % v.inspect) unless (v.respond_to?(:to_i) && v.to_i.is_a?(Integer))
|
72
|
+
end
|
73
|
+
|
74
|
+
# Requires that the value is between -54000000 and 54000000
|
75
|
+
# @param [Any] v The value validated
|
76
|
+
# @raise [ArgumentError] raised if the value cannot be converted to an integer between the allowed angle values for chart label rotation.
|
77
|
+
# @return [Boolean] true if the data is valid
|
78
|
+
def self.validate_angle(v)
|
79
|
+
raise ArgumentError, (ERR_ANGLE % v.inspect) unless (v.to_i >= -5400000 && v.to_i <= 5400000)
|
80
|
+
end
|
81
|
+
|
82
|
+
UINT_VALIDATOR = lambda { |arg| arg.respond_to?(:>=) && arg >= 0 }
|
83
|
+
|
84
|
+
# Requires that the value is a Fixnum or Integer and is greater or equal to 0
|
85
|
+
# @param [Any] v The value validated
|
86
|
+
# @raise [ArgumentError] raised if the value is not a Fixnum or Integer value greater or equal to 0
|
87
|
+
# @return [Boolean] true if the data is valid
|
88
|
+
def self.validate_unsigned_int(v)
|
89
|
+
DataTypeValidator.validate(:unsigned_int, Integer, v, UINT_VALIDATOR)
|
90
|
+
end
|
91
|
+
|
92
|
+
# Requires that the value is a Fixnum Integer or Float and is greater or equal to 0
|
93
|
+
# @param [Any] v The value validated
|
94
|
+
# @raise [ArgumentError] raised if the value is not a Fixnun, Integer, Float value greater or equal to 0
|
95
|
+
# @return [Boolean] true if the data is valid
|
96
|
+
def self.validate_unsigned_numeric(v)
|
97
|
+
DataTypeValidator.validate(:unsigned_numeric, Numeric, v, UINT_VALIDATOR)
|
98
|
+
end
|
99
|
+
|
100
|
+
# Requires that the value is a Integer
|
101
|
+
# @param [Any] v The value validated
|
102
|
+
def self.validate_int(v)
|
103
|
+
DataTypeValidator.validate :signed_int, Integer, v
|
104
|
+
end
|
105
|
+
|
106
|
+
# Requires that the value is a form that can be evaluated as a boolean in an xml document.
|
107
|
+
# The value must be an instance of Fixnum, String, Integer, Symbol, TrueClass or FalseClass and
|
108
|
+
# it must be one of 0, 1, "true", "false", :true, :false, true, false, "0", or "1"
|
109
|
+
# @param [Any] v The value validated
|
110
|
+
def self.validate_boolean(v)
|
111
|
+
DataTypeValidator.validate(:boolean, [String, Integer, Symbol, TrueClass, FalseClass], v, lambda { |arg| [0, 1, "true", "false", :true, :false, true, false, "0", "1"].include?(arg) })
|
112
|
+
end
|
113
|
+
|
114
|
+
# Requires that the value is a String
|
115
|
+
# @param [Any] v The value validated
|
116
|
+
def self.validate_string(v)
|
117
|
+
DataTypeValidator.validate :string, String, v
|
118
|
+
end
|
119
|
+
|
120
|
+
# Requires that the value is a Float
|
121
|
+
# @param [Any] v The value validated
|
122
|
+
def self.validate_float(v)
|
123
|
+
DataTypeValidator.validate :float, Float, v
|
124
|
+
end
|
125
|
+
|
126
|
+
# Requires that the value is a string containing a positive decimal number followed by one of the following units:
|
127
|
+
# "mm", "cm", "in", "pt", "pc", "pi"
|
128
|
+
def self.validate_number_with_unit(v)
|
129
|
+
RegexValidator.validate "number_with_unit", /\A[0-9]+(\.[0-9]+)?(mm|cm|in|pt|pc|pi)\Z/, v
|
130
|
+
end
|
131
|
+
|
132
|
+
# Requires that the value is an integer ranging from 10 to 400.
|
133
|
+
def self.validate_scale_10_400(v)
|
134
|
+
DataTypeValidator.validate "page_scale", Integer, v, lambda { |arg| arg >= 10 && arg <= 400 }
|
135
|
+
end
|
136
|
+
|
137
|
+
# Requires that the value is an integer ranging from 10 to 400 or 0.
|
138
|
+
def self.validate_scale_0_10_400(v)
|
139
|
+
DataTypeValidator.validate "page_scale", Integer, v, lambda { |arg| arg == 0 || (arg >= 10 && arg <= 400) }
|
140
|
+
end
|
141
|
+
|
142
|
+
# Requires that the value is one of :default, :landscape, or :portrait.
|
143
|
+
def self.validate_page_orientation(v)
|
144
|
+
RestrictionValidator.validate "page_orientation", [:default, :landscape, :portrait], v
|
145
|
+
end
|
146
|
+
# Requires that the value is one of :none, :single, :double, :singleAccounting, :doubleAccounting
|
147
|
+
def self.validate_cell_u(v)
|
148
|
+
RestrictionValidator.validate "cell run style u", [:none, :single, :double, :singleAccounting, :doubleAccounting], v
|
149
|
+
end
|
150
|
+
|
151
|
+
# validates cell style family which must be between 1 and 5
|
152
|
+
def self.validate_family(v)
|
153
|
+
RestrictionValidator.validate "cell run style family", 1..5, v
|
154
|
+
end
|
155
|
+
# Requires that the value is valid pattern type.
|
156
|
+
# valid pattern types must be one of :none, :solid, :mediumGray, :darkGray, :lightGray, :darkHorizontal, :darkVertical, :darkDown,
|
157
|
+
# :darkUp, :darkGrid, :darkTrellis, :lightHorizontal, :lightVertical, :lightDown, :lightUp, :lightGrid, :lightTrellis, :gray125, or :gray0625.
|
158
|
+
# @param [Any] v The value validated
|
159
|
+
def self.validate_pattern_type(v)
|
160
|
+
RestrictionValidator.validate :pattern_type, [:none, :solid, :mediumGray, :darkGray, :lightGray, :darkHorizontal, :darkVertical, :darkDown, :darkUp, :darkGrid,
|
161
|
+
:darkTrellis, :lightHorizontal, :lightVertical, :lightDown, :lightUp, :lightGrid, :lightTrellis, :gray125, :gray0625], v
|
162
|
+
end
|
163
|
+
|
164
|
+
# Requires that the value is one of the ST_TimePeriod types
|
165
|
+
# valid time period types are today, yesterday, tomorrow, last7Days,
|
166
|
+
# thisMonth, lastMonth, nextMonth, thisWeek, lastWeek, nextWeek
|
167
|
+
def self.validate_time_period_type(v)
|
168
|
+
RestrictionValidator.validate :time_period_type, [:today, :yesterday, :tomorrow, :last7Days, :thisMonth, :lastMonth, :nextMonth, :thisWeek, :lastWeek, :nextWeek], v
|
169
|
+
end
|
170
|
+
|
171
|
+
# Requires that the value is one of the valid ST_IconSet types
|
172
|
+
# Allowed values are: 3Arrows, 3ArrowsGray, 3Flags, 3TrafficLights1, 3TrafficLights2, 3Signs, 3Symbols, 3Symbols2, 4Arrows, 4ArrowsGray, 4RedToBlack, 4Rating, 4TrafficLights, 5Arrows, 5ArrowsGray, 5Rating, 5Quarters
|
173
|
+
def self.validate_icon_set(v)
|
174
|
+
RestrictionValidator.validate :iconSet, ["3Arrows", "3ArrowsGray", "3Flags", "3TrafficLights1", "3TrafficLights2", "3Signs", "3Symbols", "3Symbols2", "4Arrows", "4ArrowsGray", "4RedToBlack", "4Rating", "4TrafficLights", "5Arrows", "5ArrowsGray", "5Rating", "5Quarters"], v
|
175
|
+
end
|
176
|
+
|
177
|
+
# Requires that the value is valid conditional formatting type.
|
178
|
+
# valid types must be one of expression, cellIs, colorScale,
|
179
|
+
# dataBar, iconSet, top10, uniqueValues, duplicateValues,
|
180
|
+
# containsText, notContainsText, beginsWith, endsWith,
|
181
|
+
# containsBlanks, notContainsBlanks, containsErrors,
|
182
|
+
# notContainsErrors, timePeriod, aboveAverage
|
183
|
+
# @param [Any] v The value validated
|
184
|
+
def self.validate_conditional_formatting_type(v)
|
185
|
+
RestrictionValidator.validate :conditional_formatting_type, [:expression, :cellIs, :colorScale, :dataBar, :iconSet, :top10, :uniqueValues, :duplicateValues, :containsText, :notContainsText, :beginsWith, :endsWith, :containsBlanks, :notContainsBlanks, :containsErrors, :notContainsErrors, :timePeriod, :aboveAverage], v
|
186
|
+
end
|
187
|
+
|
188
|
+
# Requires thatt he value is a valid conditional formatting value object type.
|
189
|
+
# valid types must be one of num, percent, max, min, formula and percentile
|
190
|
+
def self.validate_conditional_formatting_value_object_type(v)
|
191
|
+
RestrictionValidator.validate :conditional_formatting_value_object_type, [:num, :percent, :max, :min, :formula, :percentile], v
|
192
|
+
end
|
193
|
+
|
194
|
+
# Requires that the value is valid conditional formatting operator.
|
195
|
+
# valid operators must be one of lessThan, lessThanOrEqual, equal,
|
196
|
+
# notEqual, greaterThanOrEqual, greaterThan, between, notBetween,
|
197
|
+
# containsText, notContains, beginsWith, endsWith
|
198
|
+
# @param [Any] v The value validated
|
199
|
+
def self.validate_conditional_formatting_operator(v)
|
200
|
+
RestrictionValidator.validate :conditional_formatting_type, [:lessThan, :lessThanOrEqual, :equal, :notEqual, :greaterThanOrEqual, :greaterThan, :between, :notBetween, :containsText, :notContains, :beginsWith, :endsWith], v
|
201
|
+
end
|
202
|
+
|
203
|
+
# Requires that the value is a gradient_type.
|
204
|
+
# valid types are :linear and :path
|
205
|
+
# @param [Any] v The value validated
|
206
|
+
def self.validate_gradient_type(v)
|
207
|
+
RestrictionValidator.validate :gradient_type, [:linear, :path], v
|
208
|
+
end
|
209
|
+
|
210
|
+
# Requires that the value is a valid scatterStyle
|
211
|
+
# must be one of :none | :line | :lineMarker | :marker | :smooth | :smoothMarker
|
212
|
+
# must be one of "none" | "line" | "lineMarker" | "marker" | "smooth" | "smoothMarker"
|
213
|
+
# @param [Symbol|String] v the value to validate
|
214
|
+
def self.validate_scatter_style(v)
|
215
|
+
Axlsx::RestrictionValidator.validate "ScatterChart.scatterStyle", [:none, :line, :lineMarker, :marker, :smooth, :smoothMarker], v.to_sym
|
216
|
+
end
|
217
|
+
# Requires that the value is a valid horizontal_alignment
|
218
|
+
# :general, :left, :center, :right, :fill, :justify, :centerContinuous, :distributed are allowed
|
219
|
+
# @param [Any] v The value validated
|
220
|
+
def self.validate_horizontal_alignment(v)
|
221
|
+
RestrictionValidator.validate :horizontal_alignment, [:general, :left, :center, :right, :fill, :justify, :centerContinuous, :distributed], v
|
222
|
+
end
|
223
|
+
|
224
|
+
# Requires that the value is a valid vertical_alignment
|
225
|
+
# :top, :center, :bottom, :justify, :distributed are allowed
|
226
|
+
# @param [Any] v The value validated
|
227
|
+
def self.validate_vertical_alignment(v)
|
228
|
+
RestrictionValidator.validate :vertical_alignment, [:top, :center, :bottom, :justify, :distributed], v
|
229
|
+
end
|
230
|
+
|
231
|
+
# Requires that the value is a valid content_type
|
232
|
+
# TABLE_CT, WORKBOOK_CT, APP_CT, RELS_CT, STYLES_CT, XML_CT, WORKSHEET_CT, SHARED_STRINGS_CT, CORE_CT, CHART_CT, DRAWING_CT, COMMENT_CT are allowed
|
233
|
+
# @param [Any] v The value validated
|
234
|
+
def self.validate_content_type(v)
|
235
|
+
RestrictionValidator.validate :content_type, [TABLE_CT, WORKBOOK_CT, APP_CT, RELS_CT, STYLES_CT, XML_CT, WORKSHEET_CT, SHARED_STRINGS_CT, CORE_CT, CHART_CT, JPEG_CT, GIF_CT, PNG_CT, DRAWING_CT, COMMENT_CT, VML_DRAWING_CT, PIVOT_TABLE_CT, PIVOT_TABLE_CACHE_DEFINITION_CT], v
|
236
|
+
end
|
237
|
+
|
238
|
+
# Requires that the value is a valid relationship_type
|
239
|
+
# XML_NS_R, TABLE_R, WORKBOOK_R, WORKSHEET_R, APP_R, RELS_R, CORE_R, STYLES_R, CHART_R, DRAWING_R, IMAGE_R, HYPERLINK_R, SHARED_STRINGS_R are allowed
|
240
|
+
# @param [Any] v The value validated
|
241
|
+
def self.validate_relationship_type(v)
|
242
|
+
RestrictionValidator.validate :relationship_type, [XML_NS_R, TABLE_R, WORKBOOK_R, WORKSHEET_R, APP_R, RELS_R, CORE_R, STYLES_R, CHART_R, DRAWING_R, IMAGE_R, HYPERLINK_R, SHARED_STRINGS_R, COMMENT_R, VML_DRAWING_R, COMMENT_R_NULL, PIVOT_TABLE_R, PIVOT_TABLE_CACHE_DEFINITION_R], v
|
243
|
+
end
|
244
|
+
|
245
|
+
# Requires that the value is a valid table element type
|
246
|
+
# :wholeTable, :headerRow, :totalRow, :firstColumn, :lastColumn, :firstRowStripe, :secondRowStripe, :firstColumnStripe, :secondColumnStripe, :firstHeaderCell, :lastHeaderCell, :firstTotalCell, :lastTotalCell, :firstSubtotalColumn, :secondSubtotalColumn, :thirdSubtotalColumn, :firstSubtotalRow, :secondSubtotalRow, :thirdSubtotalRow, :blankRow, :firstColumnSubheading, :secondColumnSubheading, :thirdColumnSubheading, :firstRowSubheading, :secondRowSubheading, :thirdRowSubheading, :pageFieldLabels, :pageFieldValues are allowed
|
247
|
+
# @param [Any] v The value validated
|
248
|
+
def self.validate_table_element_type(v)
|
249
|
+
RestrictionValidator.validate :table_element_type, [:wholeTable, :headerRow, :totalRow, :firstColumn, :lastColumn, :firstRowStripe, :secondRowStripe, :firstColumnStripe, :secondColumnStripe, :firstHeaderCell, :lastHeaderCell, :firstTotalCell, :lastTotalCell, :firstSubtotalColumn, :secondSubtotalColumn, :thirdSubtotalColumn, :firstSubtotalRow, :secondSubtotalRow, :thirdSubtotalRow, :blankRow, :firstColumnSubheading, :secondColumnSubheading, :thirdColumnSubheading, :firstRowSubheading, :secondRowSubheading, :thirdRowSubheading, :pageFieldLabels, :pageFieldValues], v
|
250
|
+
end
|
251
|
+
|
252
|
+
# Requires that the value is a valid data_validation_error_style
|
253
|
+
# :information, :stop, :warning
|
254
|
+
# @param [Any] v The value validated
|
255
|
+
def self.validate_data_validation_error_style(v)
|
256
|
+
RestrictionValidator.validate :validate_data_validation_error_style, [:information, :stop, :warning], v
|
257
|
+
end
|
258
|
+
|
259
|
+
# Requires that the value is valid data validation operator.
|
260
|
+
# valid operators must be one of lessThan, lessThanOrEqual, equal,
|
261
|
+
# notEqual, greaterThanOrEqual, greaterThan, between, notBetween
|
262
|
+
# @param [Any] v The value validated
|
263
|
+
def self.validate_data_validation_operator(v)
|
264
|
+
RestrictionValidator.validate :data_validation_operator, [:lessThan, :lessThanOrEqual, :equal, :notEqual, :greaterThanOrEqual, :greaterThan, :between, :notBetween], v
|
265
|
+
end
|
266
|
+
|
267
|
+
# Requires that the value is valid data validation type.
|
268
|
+
# valid types must be one of custom, data, decimal, list, none, textLength, time, whole
|
269
|
+
# @param [Any] v The value validated
|
270
|
+
def self.validate_data_validation_type(v)
|
271
|
+
RestrictionValidator.validate :data_validation_type, [:custom, :data, :decimal, :list, :none, :textLength, :time, :whole], v
|
272
|
+
end
|
273
|
+
|
274
|
+
# Requires that the value is a valid sheet view type.
|
275
|
+
# valid types must be one of normal, page_break_preview, page_layout
|
276
|
+
# @param [Any] v The value validated
|
277
|
+
def self.validate_sheet_view_type(v)
|
278
|
+
RestrictionValidator.validate :sheet_view_type, [:normal, :page_break_preview, :page_layout], v
|
279
|
+
end
|
280
|
+
|
281
|
+
# Requires that the value is a valid active pane type.
|
282
|
+
# valid types must be one of bottom_left, bottom_right, top_left, top_right
|
283
|
+
# @param [Any] v The value validated
|
284
|
+
def self.validate_pane_type(v)
|
285
|
+
RestrictionValidator.validate :active_pane_type, [:bottom_left, :bottom_right, :top_left, :top_right], v
|
286
|
+
end
|
287
|
+
|
288
|
+
# Requires that the value is a valid split state type.
|
289
|
+
# valid types must be one of frozen, frozen_split, split
|
290
|
+
# @param [Any] v The value validated
|
291
|
+
def self.validate_split_state_type(v)
|
292
|
+
RestrictionValidator.validate :split_state_type, [:frozen, :frozen_split, :split], v
|
293
|
+
end
|
294
|
+
|
295
|
+
# Requires that the value is a valid "display blanks as" type.
|
296
|
+
# valid types must be one of gap, span, zero
|
297
|
+
# @param [Any] v The value validated
|
298
|
+
def self.validate_display_blanks_as(v)
|
299
|
+
RestrictionValidator.validate :display_blanks_as, [:gap, :span, :zero], v
|
300
|
+
end
|
301
|
+
|
302
|
+
# Requires that the value is one of :visible, :hidden, :very_hidden
|
303
|
+
def self.validate_view_visibility(v)
|
304
|
+
RestrictionValidator.validate :visibility, [:visible, :hidden, :very_hidden], v
|
305
|
+
end
|
306
|
+
|
307
|
+
# Requires that the value is one of :default, :circle, :dash, :diamond, :dot, :picture, :plus, :square, :star, :triangle, :x
|
308
|
+
def self.validate_marker_symbol(v)
|
309
|
+
RestrictionValidator.validate :marker_symbol, [:default, :circle, :dash, :diamond, :dot, :picture, :plus, :square, :star, :triangle, :x], v
|
310
|
+
end
|
311
|
+
end
|
@@ -0,0 +1,128 @@
|
|
1
|
+
# <definedNames>
|
2
|
+
# <definedName name="_xlnm.Print_Titles" localSheetId="0">Sheet1!$1:$1</definedName>
|
3
|
+
# </definedNames>
|
4
|
+
|
5
|
+
#<xsd:complexType name="CT_DefinedName">
|
6
|
+
# <xsd:simpleContent>
|
7
|
+
# <xsd:extension base="ST_Formula">
|
8
|
+
# <xsd:attribute name="name" type="s:ST_Xstring" use="required"/>
|
9
|
+
# <xsd:attribute name="comment" type="s:ST_Xstring" use="optional"/>
|
10
|
+
# <xsd:attribute name="customMenu" type="s:ST_Xstring" use="optional"/>
|
11
|
+
# <xsd:attribute name="description" type="s:ST_Xstring" use="optional"/>
|
12
|
+
# <xsd:attribute name="help" type="s:ST_Xstring" use="optional"/>
|
13
|
+
# <xsd:attribute name="statusBar" type="s:ST_Xstring" use="optional"/>
|
14
|
+
# <xsd:attribute name="localSheetId" type="xsd:unsignedInt" use="optional"/>
|
15
|
+
# <xsd:attribute name="hidden" type="xsd:boolean" use="optional" default="false"/>
|
16
|
+
# <xsd:attribute name="function" type="xsd:boolean" use="optional" default="false"/>
|
17
|
+
# <xsd:attribute name="vbProcedure" type="xsd:boolean" use="optional" default="false"/>
|
18
|
+
# <xsd:attribute name="xlm" type="xsd:boolean" use="optional" default="false"/>
|
19
|
+
# <xsd:attribute name="functionGroupId" type="xsd:unsignedInt" use="optional"/>
|
20
|
+
# <xsd:attribute name="shortcutKey" type="s:ST_Xstring" use="optional"/>
|
21
|
+
# <xsd:attribute name="publishToServer" type="xsd:boolean" use="optional" default="false"/>
|
22
|
+
# <xsd:attribute name="workbookParameter" type="xsd:boolean" use="optional" default="false"/>
|
23
|
+
# </xsd:extenstion>
|
24
|
+
# </xsd:simpleContent>
|
25
|
+
|
26
|
+
module Axlsx
|
27
|
+
# This element defines the defined names that are defined within this workbook.
|
28
|
+
# Defined names are descriptive text that is used to represents a cell, range of cells, formula, or constant value.
|
29
|
+
# Use easy-to-understand names, such as Products, to refer to hard to understand ranges, such as Sales!C20:C30.
|
30
|
+
# A defined name in a formula can make it easier to understand the purpose of the formula.
|
31
|
+
# @example
|
32
|
+
# The formula =SUM(FirstQuarterSales) might be easier to identify than =SUM(C20:C30
|
33
|
+
#
|
34
|
+
# Names are available to any sheet.
|
35
|
+
# @example
|
36
|
+
# If the name ProjectedSales refers to the range A20:A30 on the first worksheet in a workbook,
|
37
|
+
# you can use the name ProjectedSales on any other sheet in the same workbook to refer to range A20:A30 on the first worksheet.
|
38
|
+
# Names can also be used to represent formulas or values that do not change (constants).
|
39
|
+
#
|
40
|
+
# @example
|
41
|
+
# The name SalesTax can be used to represent the sales tax amount (such as 6.2 percent) applied to sales transactions.
|
42
|
+
# You can also link to a defined name in another workbook, or define a name that refers to cells in another workbook.
|
43
|
+
#
|
44
|
+
# @example
|
45
|
+
# The formula =SUM(Sales.xls!ProjectedSales) refers to the named range ProjectedSales in the workbook named Sales.
|
46
|
+
# A compliant producer or consumer considers a defined name in the range A1-XFD1048576 to be an error.
|
47
|
+
# All other names outside this range can be defined as names and overrides a cell reference if an ambiguity exists.
|
48
|
+
#
|
49
|
+
# @example
|
50
|
+
# For clarification: LOG10 is always a cell reference, LOG10() is always formula, LOGO1000 can be a defined name that overrides a cell reference.
|
51
|
+
class DefinedName
|
52
|
+
include Axlsx::SerializedAttributes
|
53
|
+
include Axlsx::OptionsParser
|
54
|
+
include Axlsx::Accessors
|
55
|
+
# creates a new DefinedName.
|
56
|
+
# @param [String] formula - the formula the defined name references
|
57
|
+
# @param [Hash] options - A hash of key/value pairs that will be mapped to this instances attributes.
|
58
|
+
#
|
59
|
+
# @option [String] name - Specifies the name that appears in the user interface for the defined name.
|
60
|
+
# This attribute is required.
|
61
|
+
# The following built-in names are defined in this SpreadsheetML specification:
|
62
|
+
# Print
|
63
|
+
# _xlnm.Print_Area: this defined name specifies the workbook's print area.
|
64
|
+
# _xlnm.Print_Titles: this defined name specifies the row(s) or column(s) to repeat
|
65
|
+
# the top of each printed page.
|
66
|
+
# Filter & Advanced Filter
|
67
|
+
# _xlnm.Criteria: this defined name refers to a range containing the criteria values
|
68
|
+
# to be used in applying an advanced filter to a range of data.
|
69
|
+
# _xlnm._FilterDatabase: can be one of the following
|
70
|
+
# a. this defined name refers to a range to which an advanced filter has been
|
71
|
+
# applied. This represents the source data range, unfiltered.
|
72
|
+
# b. This defined name refers to a range to which an AutoFilter has been
|
73
|
+
# applied.
|
74
|
+
# _xlnm.Extract: this defined name refers to the range containing the filtered output
|
75
|
+
# values resulting from applying an advanced filter criteria to a source range.
|
76
|
+
# Miscellaneous
|
77
|
+
# _xlnm.Consolidate_Area: the defined name refers to a consolidation area.
|
78
|
+
# _xlnm.Database: the range specified in the defined name is from a database data source.
|
79
|
+
# _xlnm.Sheet_Title: the defined name refers to a sheet title.
|
80
|
+
# @option [String] comment - A comment to optionally associate with the name
|
81
|
+
# @option [String] custom_menu - The menu text for the defined name
|
82
|
+
# @option [String] description - An optional description for the defined name
|
83
|
+
# @option [String] help - The help topic to display for this defined name
|
84
|
+
# @option [String] status_bar - The text to display on the application status bar when this defined name has focus
|
85
|
+
# @option [String] local_sheet_id - Specifies the sheet index in this workbook where data from an external reference is displayed
|
86
|
+
# @option [Boolean] hidden - Specifies a boolean value that indicates whether the defined name is hidden in the user interface.
|
87
|
+
# @option [Boolean] function - Specifies a boolean value that indicates that the defined name refers to a user-defined function.
|
88
|
+
# This attribute is used when there is an add-in or other code project associated with the file.
|
89
|
+
# @option [Boolean] vb_proceedure - Specifies a boolean value that indicates whether the defined name is related to an external function, command, or other executable code.
|
90
|
+
# @option [Boolean] xlm - Specifies a boolean value that indicates whether the defined name is related to an external function, command, or other executable code.
|
91
|
+
# @option [Integer] function_group_id - Specifies the function group index if the defined name refers to a function.
|
92
|
+
# The function group defines the general category for the function.
|
93
|
+
# This attribute is used when there is an add-in or other code project associated with the file.
|
94
|
+
# See Open Office XML Part 1 for more info.
|
95
|
+
# @option [String] short_cut_key - Specifies the keyboard shortcut for the defined name.
|
96
|
+
# @option [Boolean] publish_to_server - Specifies a boolean value that indicates whether the defined name is included in the
|
97
|
+
# version of the workbook that is published to or rendered on a Web or application server.
|
98
|
+
# @option [Boolean] workbook_parameter - Specifies a boolean value that indicates that the name is used as a workbook parameter on a
|
99
|
+
# version of the workbook that is published to or rendered on a Web or application server.
|
100
|
+
def initialize(formula, options={})
|
101
|
+
@formula = formula
|
102
|
+
parse_options options
|
103
|
+
end
|
104
|
+
|
105
|
+
attr_reader :local_sheet_id
|
106
|
+
|
107
|
+
# The local sheet index (0-based)
|
108
|
+
# @param [Integer] value the unsigned integer index of the sheet this defined_name applies to.
|
109
|
+
def local_sheet_id=(value)
|
110
|
+
Axlsx::validate_unsigned_int(value)
|
111
|
+
@local_sheet_id = value
|
112
|
+
end
|
113
|
+
|
114
|
+
string_attr_accessor :short_cut_key, :status_bar, :help, :description, :custom_menu, :comment, :name, :formula
|
115
|
+
|
116
|
+
boolean_attr_accessor :workbook_parameter, :publish_to_server, :xlm, :vb_proceedure, :function, :hidden
|
117
|
+
|
118
|
+
serializable_attributes :short_cut_key, :status_bar, :help, :description, :custom_menu, :comment,
|
119
|
+
:workbook_parameter, :publish_to_server, :xlm, :vb_proceedure, :function, :hidden, :local_sheet_id
|
120
|
+
|
121
|
+
def to_xml_string(str='')
|
122
|
+
raise ArgumentError, 'you must specify the name for this defined name. Please read the documentation for Axlsx::DefinedName for more details' unless name
|
123
|
+
str << ('<definedName ' << 'name="' << name << '" ')
|
124
|
+
serialized_attributes str
|
125
|
+
str << ('>' << @formula << '</definedName>')
|
126
|
+
end
|
127
|
+
end
|
128
|
+
end
|