RichBlockTableCell

class pyrogram.types.RichBlockTableCell[source]

Cell in a table.

Parameters:
  • text (RichText, optional) – Text in the cell. If omitted, then the cell is invisible.

  • is_header (bool, optional) – True, if the cell is a header cell.

  • colspan (int, optional) – The number of columns the cell spans if it is bigger than 1.

  • rowspan (int, optional) – The number of rows the cell spans if it is bigger than 1.

  • align (str, optional) – Horizontal cell content alignment. Currently, must be one of “left”, “center”, or “right”.

  • valign (str, optional) – Vertical cell content alignment. Currently, must be one of “top”, “middle”, or “bottom”.