Class: HtmlToMarkdown::TableGrid

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeTableGrid

Returns a new instance of TableGrid.

Parameters:

  • rows: (Integer)
  • cols: (Integer)
  • cells: (Array[GridCell])


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

def initialize: (?rows: Integer, ?cols: Integer, ?cells: Array[GridCell]) -> void

Instance Attribute Details

#cellsArray[GridCell] (readonly)

Returns the value of attribute cells.

Returns:



248
249
250
# File 'sig/types.rbs', line 248

def cells
  @cells
end

#colsInteger (readonly)

Returns the value of attribute cols.

Returns:

  • (Integer)


247
248
249
# File 'sig/types.rbs', line 247

def cols
  @cols
end

#rowsInteger (readonly)

Returns the value of attribute rows.

Returns:

  • (Integer)


246
247
248
# File 'sig/types.rbs', line 246

def rows
  @rows
end