Class: Xberg::Table
- Inherits:
-
Object
- Object
- Xberg::Table
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#bounding_box ⇒ BoundingBox?
readonly
Returns the value of attribute bounding_box.
-
#cell_styles ⇒ Array[TableCellStyle]
readonly
Returns the value of attribute cell_styles.
-
#cells ⇒ Array[Array[String]]
readonly
Returns the value of attribute cells.
-
#columns ⇒ Array[String]?
readonly
Returns the value of attribute columns.
-
#markdown ⇒ String
readonly
Returns the value of attribute markdown.
-
#page_number ⇒ Integer
readonly
Returns the value of attribute page_number.
-
#table_id ⇒ String?
readonly
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.
2479 |
# File 'sig/types.rbs', line 2479 def initialize: (?cells: Array[Array[String]], ?markdown: String, ?page_number: Integer, ?bounding_box: BoundingBox, ?table_id: String, ?cell_styles: Array[TableCellStyle], ?columns: Array[String]) -> void |
Instance Attribute Details
#bounding_box ⇒ BoundingBox? (readonly)
Returns the value of attribute bounding_box.
2474 2475 2476 |
# File 'sig/types.rbs', line 2474 def bounding_box @bounding_box end |
#cell_styles ⇒ Array[TableCellStyle] (readonly)
Returns the value of attribute cell_styles.
2476 2477 2478 |
# File 'sig/types.rbs', line 2476 def cell_styles @cell_styles end |
#cells ⇒ Array[Array[String]] (readonly)
Returns the value of attribute cells.
2471 2472 2473 |
# File 'sig/types.rbs', line 2471 def cells @cells end |
#columns ⇒ Array[String]? (readonly)
Returns the value of attribute columns.
2477 2478 2479 |
# File 'sig/types.rbs', line 2477 def columns @columns end |
#markdown ⇒ String (readonly)
Returns the value of attribute markdown.
2472 2473 2474 |
# File 'sig/types.rbs', line 2472 def markdown @markdown end |
#page_number ⇒ Integer (readonly)
Returns the value of attribute page_number.
2473 2474 2475 |
# File 'sig/types.rbs', line 2473 def page_number @page_number end |
#table_id ⇒ String? (readonly)
Returns the value of attribute table_id.
2475 2476 2477 |
# File 'sig/types.rbs', line 2475 def table_id @table_id end |