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)


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

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:



1693
1694
1695
# File 'sig/types.rbs', line 1693

def bounding_box
  @bounding_box
end

#cellsArray[Array[String]]?

Returns the value of attribute cells.

Returns:

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


1690
1691
1692
# File 'sig/types.rbs', line 1690

def cells
  @cells
end

#markdownString?

Returns the value of attribute markdown.

Returns:

  • (String, nil)


1691
1692
1693
# File 'sig/types.rbs', line 1691

def markdown
  @markdown
end

#page_numberInteger?

Returns the value of attribute page_number.

Returns:

  • (Integer, nil)


1692
1693
1694
# File 'sig/types.rbs', line 1692

def page_number
  @page_number
end