Class: Xberg::Table

Inherits:
Object
  • Object
show all
Defined in:
sig/types.rbs

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeTable

Returns a new instance of Table.

Parameters:

  • cells: (Array[Array[String]])
  • markdown: (String)
  • page_number: (Integer)
  • bounding_box: (BoundingBox)
  • table_id: (String)
  • columns: (Array[String])


1812
# File 'sig/types.rbs', line 1812

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_boxBoundingBox?

Returns the value of attribute bounding_box.

Returns:



1808
1809
1810
# File 'sig/types.rbs', line 1808

def bounding_box
  @bounding_box
end

#cellsArray[Array[String]]?

Returns the value of attribute cells.

Returns:

  • (Array[Array[String]], nil)


1805
1806
1807
# File 'sig/types.rbs', line 1805

def cells
  @cells
end

#columnsArray[String]?

Returns the value of attribute columns.

Returns:

  • (Array[String], nil)


1810
1811
1812
# File 'sig/types.rbs', line 1810

def columns
  @columns
end

#markdownString?

Returns the value of attribute markdown.

Returns:

  • (String, nil)


1806
1807
1808
# File 'sig/types.rbs', line 1806

def markdown
  @markdown
end

#page_numberInteger?

Returns the value of attribute page_number.

Returns:

  • (Integer, nil)


1807
1808
1809
# File 'sig/types.rbs', line 1807

def page_number
  @page_number
end

#table_idString?

Returns the value of attribute table_id.

Returns:

  • (String, nil)


1809
1810
1811
# File 'sig/types.rbs', line 1809

def table_id
  @table_id
end