Class: HtmlToMarkdown::GridCell

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeGridCell

Returns a new instance of GridCell.

Parameters:

  • content: (String)
  • row: (Integer)
  • col: (Integer)
  • row_span: (Integer)
  • col_span: (Integer)
  • is_header: (Boolean)


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

def initialize: (content: String, row: Integer, col: Integer, row_span: Integer, col_span: Integer, is_header: bool) -> void

Instance Attribute Details

#colInteger (readonly)

Returns the value of attribute col.

Returns:

  • (Integer)


258
259
260
# File 'sig/types.rbs', line 258

def col
  @col
end

#col_spanInteger (readonly)

Returns the value of attribute col_span.

Returns:

  • (Integer)


260
261
262
# File 'sig/types.rbs', line 260

def col_span
  @col_span
end

#contentString (readonly)

Returns the value of attribute content.

Returns:

  • (String)


256
257
258
# File 'sig/types.rbs', line 256

def content
  @content
end

#is_headerBoolean (readonly)

Returns the value of attribute is_header.

Returns:

  • (Boolean)


261
262
263
# File 'sig/types.rbs', line 261

def is_header
  @is_header
end

#rowInteger (readonly)

Returns the value of attribute row.

Returns:

  • (Integer)


257
258
259
# File 'sig/types.rbs', line 257

def row
  @row
end

#row_spanInteger (readonly)

Returns the value of attribute row_span.

Returns:

  • (Integer)


259
260
261
# File 'sig/types.rbs', line 259

def row_span
  @row_span
end