Class: Xberg::Table
- Inherits:
-
Object
- Object
- Xberg::Table
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#bounding_box ⇒ BoundingBox?
Returns the value of attribute bounding_box.
-
#cells ⇒ Array[Array[String]]?
Returns the value of attribute cells.
-
#columns ⇒ Array[String]?
Returns the value of attribute columns.
-
#markdown ⇒ String?
Returns the value of attribute markdown.
-
#page_number ⇒ Integer?
Returns the value of attribute page_number.
-
#table_id ⇒ String?
Returns the value of attribute table_id.
Instance Method Summary collapse
-
#initialize ⇒ Table
constructor
A new instance of Table.
Constructor Details
#initialize ⇒ Table
Returns a new instance of Table.
1813 |
# File 'sig/types.rbs', line 1813
def initialize: (?cells: Array[Array[String]], ?markdown: String, ?page_number: Integer, ?bounding_box: BoundingBox, ?table_id: String, ?columns: Array[String]) -> void
|
Instance Attribute Details
#bounding_box ⇒ BoundingBox?
Returns the value of attribute bounding_box.
1809 1810 1811 |
# File 'sig/types.rbs', line 1809 def bounding_box @bounding_box end |
#cells ⇒ Array[Array[String]]?
Returns the value of attribute cells.
1806 1807 1808 |
# File 'sig/types.rbs', line 1806 def cells @cells end |
#columns ⇒ Array[String]?
Returns the value of attribute columns.
1811 1812 1813 |
# File 'sig/types.rbs', line 1811 def columns @columns end |
#markdown ⇒ String?
Returns the value of attribute markdown.
1807 1808 1809 |
# File 'sig/types.rbs', line 1807 def markdown @markdown end |
#page_number ⇒ Integer?
Returns the value of attribute page_number.
1808 1809 1810 |
# File 'sig/types.rbs', line 1808 def page_number @page_number end |
#table_id ⇒ String?
Returns the value of attribute table_id.
1810 1811 1812 |
# File 'sig/types.rbs', line 1810 def table_id @table_id end |