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)


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

def initialize: (?cells: Array[Array[String]], ?markdown: String, ?page_number: Integer, ?bounding_box: BoundingBox) -> void

Instance Attribute Details

#bounding_boxBoundingBox?

Returns the value of attribute bounding_box.

Returns:



1682
1683
1684
# File 'sig/types.rbs', line 1682

def bounding_box
  @bounding_box
end

#cellsArray[Array[String]]?

Returns the value of attribute cells.

Returns:

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


1679
1680
1681
# File 'sig/types.rbs', line 1679

def cells
  @cells
end

#markdownString?

Returns the value of attribute markdown.

Returns:

  • (String, nil)


1680
1681
1682
# File 'sig/types.rbs', line 1680

def markdown
  @markdown
end

#page_numberInteger?

Returns the value of attribute page_number.

Returns:

  • (Integer, nil)


1681
1682
1683
# File 'sig/types.rbs', line 1681

def page_number
  @page_number
end