ultra-telegram-framework
    Preparing search index...

    Interface RichBlockTableCell

    Cell in a table.

    interface RichBlockTableCell {
        align: string;
        colspan?: number;
        is_header?: boolean;
        rowspan?: number;
        text?: RichText;
        valign: string;
    }
    Index

    Properties

    align: string

    Horizontal cell content alignment. Currently, must be one of "left", "center", or "right".

    colspan?: number

    Optional. The number of columns the cell spans if it is bigger than 1

    is_header?: boolean

    Optional. True, if the cell is a header cell

    rowspan?: number

    Optional. The number of rows the cell spans if it is bigger than 1

    text?: RichText

    Optional. Text in the cell. If omitted, then the cell is invisible.

    valign: string

    Vertical cell content alignment. Currently, must be one of "top", "middle", or "bottom".