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.
901 |
# File 'sig/types.rbs', line 901
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.
899 900 901 |
# File 'sig/types.rbs', line 899 def bbox @bbox end |
#col ⇒ Integer (readonly)
Returns the value of attribute col.
895 896 897 |
# File 'sig/types.rbs', line 895 def col @col end |
#col_span ⇒ Integer (readonly)
Returns the value of attribute col_span.
897 898 899 |
# File 'sig/types.rbs', line 897 def col_span @col_span end |
#content ⇒ String (readonly)
Returns the value of attribute content.
893 894 895 |
# File 'sig/types.rbs', line 893 def content @content end |
#is_header ⇒ Boolean (readonly)
Returns the value of attribute is_header.
898 899 900 |
# File 'sig/types.rbs', line 898 def is_header @is_header end |
#row ⇒ Integer (readonly)
Returns the value of attribute row.
894 895 896 |
# File 'sig/types.rbs', line 894 def row @row end |
#row_span ⇒ Integer (readonly)
Returns the value of attribute row_span.
896 897 898 |
# File 'sig/types.rbs', line 896 def row_span @row_span end |