Class: Xberg::GridCell
- Inherits:
-
Object
- Object
- Xberg::GridCell
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#bbox ⇒ BoundingBox?
readonly
Returns the value of attribute bbox.
-
#col ⇒ Integer
readonly
Returns the value of attribute col.
-
#col_span ⇒ Integer
readonly
Returns the value of attribute col_span.
-
#content ⇒ String
readonly
Returns the value of attribute content.
-
#heading_level ⇒ Integer?
readonly
Returns the value of attribute heading_level.
-
#is_header ⇒ Boolean
readonly
Returns the value of attribute is_header.
-
#row ⇒ Integer
readonly
Returns the value of attribute row.
-
#row_span ⇒ Integer
readonly
Returns the value of attribute row_span.
-
#style_name ⇒ String?
readonly
Returns the value of attribute style_name.
Instance Method Summary collapse
-
#initialize ⇒ GridCell
constructor
A new instance of GridCell.
Constructor Details
#initialize ⇒ GridCell
Returns a new instance of GridCell.
1156 |
# File 'sig/types.rbs', line 1156 def initialize: (content: String, row: Integer, col: Integer, row_span: Integer, col_span: Integer, is_header: bool, ?bbox: BoundingBox, ?heading_level: Integer, ?style_name: String) -> void |
Instance Attribute Details
#bbox ⇒ BoundingBox? (readonly)
Returns the value of attribute bbox.
1152 1153 1154 |
# File 'sig/types.rbs', line 1152 def bbox @bbox end |
#col ⇒ Integer (readonly)
Returns the value of attribute col.
1148 1149 1150 |
# File 'sig/types.rbs', line 1148 def col @col end |
#col_span ⇒ Integer (readonly)
Returns the value of attribute col_span.
1150 1151 1152 |
# File 'sig/types.rbs', line 1150 def col_span @col_span end |
#content ⇒ String (readonly)
Returns the value of attribute content.
1146 1147 1148 |
# File 'sig/types.rbs', line 1146 def content @content end |
#heading_level ⇒ Integer? (readonly)
Returns the value of attribute heading_level.
1153 1154 1155 |
# File 'sig/types.rbs', line 1153 def heading_level @heading_level end |
#is_header ⇒ Boolean (readonly)
Returns the value of attribute is_header.
1151 1152 1153 |
# File 'sig/types.rbs', line 1151 def is_header @is_header end |
#row ⇒ Integer (readonly)
Returns the value of attribute row.
1147 1148 1149 |
# File 'sig/types.rbs', line 1147 def row @row end |
#row_span ⇒ Integer (readonly)
Returns the value of attribute row_span.
1149 1150 1151 |
# File 'sig/types.rbs', line 1149 def row_span @row_span end |
#style_name ⇒ String? (readonly)
Returns the value of attribute style_name.
1154 1155 1156 |
# File 'sig/types.rbs', line 1154 def style_name @style_name end |