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.
-
#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.
Instance Method Summary collapse
-
#initialize ⇒ GridCell
constructor
A new instance of GridCell.
Constructor Details
#initialize ⇒ GridCell
Returns a new instance of GridCell.
866 |
# File 'sig/types.rbs', line 866
def initialize: (content: String, row: Integer, col: Integer, row_span: Integer, col_span: Integer, is_header: bool, ?bbox: BoundingBox) -> void
|
Instance Attribute Details
#bbox ⇒ BoundingBox (readonly)
Returns the value of attribute bbox.
864 865 866 |
# File 'sig/types.rbs', line 864 def bbox @bbox end |
#col ⇒ Integer (readonly)
Returns the value of attribute col.
860 861 862 |
# File 'sig/types.rbs', line 860 def col @col end |
#col_span ⇒ Integer (readonly)
Returns the value of attribute col_span.
862 863 864 |
# File 'sig/types.rbs', line 862 def col_span @col_span end |
#content ⇒ String (readonly)
Returns the value of attribute content.
858 859 860 |
# File 'sig/types.rbs', line 858 def content @content end |
#is_header ⇒ Boolean (readonly)
Returns the value of attribute is_header.
863 864 865 |
# File 'sig/types.rbs', line 863 def is_header @is_header end |
#row ⇒ Integer (readonly)
Returns the value of attribute row.
859 860 861 |
# File 'sig/types.rbs', line 859 def row @row end |
#row_span ⇒ Integer (readonly)
Returns the value of attribute row_span.
861 862 863 |
# File 'sig/types.rbs', line 861 def row_span @row_span end |