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])


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

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

Instance Attribute Details

#cellsArray[GridCell]?

Returns the value of attribute cells.

Returns:



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

def cells
  @cells
end

#colsInteger?

Returns the value of attribute cols.

Returns:

  • (Integer, nil)


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

def cols
  @cols
end

#rowsInteger?

Returns the value of attribute rows.

Returns:

  • (Integer, nil)


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

def rows
  @rows
end