Class: Axlsx::Border
- Inherits:
-
Object
- Object
- Axlsx::Border
- Includes:
- OptionsParser, SerializedAttributes
- Defined in:
- lib/axlsx/stylesheet/border.rb
Overview
This class details a border used in Office Open XML spreadsheet styles.
Instance Attribute Summary collapse
-
#diagonal_down ⇒ Boolean
(also: #diagonalDown)
The diagonal down property for the border that indicates if the border should include a diagonal line from the top left to the top right of the cell.
-
#diagonal_up ⇒ Boolean
(also: #diagonalUp)
The diagonal up property for the border that indicates if the border should include a diagonal line from the bottom left to the top right of the cell.
-
#outline ⇒ Boolean
The outline property for the border indicating that top, left, right and bottom borders should only be applied to the outside border of a range of cells.
-
#prs ⇒ SimpleTypedList
readonly
A list of BorderPr objects for this border.
Instance Method Summary collapse
-
#initialize(options = {}) ⇒ Border
constructor
Creates a new Border object.
-
#to_xml_string(str = '') ⇒ String
Serializes the object.
Methods included from OptionsParser
Methods included from SerializedAttributes
included, #serialized_attributes
Constructor Details
Instance Attribute Details
#diagonal_down ⇒ Boolean Also known as: diagonalDown
Returns The diagonal down property for the border that indicates if the border should include a diagonal line from the top left to the top right of the cell.
34 35 36 |
# File 'lib/axlsx/stylesheet/border.rb', line 34 def diagonal_down @diagonal_down end |
#diagonal_up ⇒ Boolean Also known as: diagonalUp
Returns The diagonal up property for the border that indicates if the border should include a diagonal line from the bottom left to the top right of the cell.
30 31 32 |
# File 'lib/axlsx/stylesheet/border.rb', line 30 def diagonal_up @diagonal_up end |
#outline ⇒ Boolean
Returns The outline property for the border indicating that top, left, right and bottom borders should only be applied to the outside border of a range of cells.
38 39 40 |
# File 'lib/axlsx/stylesheet/border.rb', line 38 def outline @outline end |
#prs ⇒ SimpleTypedList (readonly)
Returns A list of BorderPr objects for this border.
41 42 43 |
# File 'lib/axlsx/stylesheet/border.rb', line 41 def prs @prs end |
Instance Method Details
#to_xml_string(str = '') ⇒ String
Serializes the object
57 58 59 60 61 62 63 64 65 66 67 68 |
# File 'lib/axlsx/stylesheet/border.rb', line 57 def to_xml_string(str = '') str << '<border ' serialized_attributes str str << '>' # enforces order [:start, :end, :left, :right, :top, :bottom, :diagonal, :vertical, :horizontal].each do |k| @prs.select { |pr| pr.name == k }.each do |part| part.to_xml_string(str) end end str << '</border>' end |