MadelineProtoDocs/docs/API_docs/constructors/pageTableCell.md
2024-05-01 14:53:46 +02:00

1.4 KiB

title description nav_exclude image
pageTableCell Table cell true https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: pageTableCell

Back to constructors index

Table cell

Attributes:

Name Type Required Description
header Bool Optional Is this element part of the column header
align_center Bool Optional Horizontally centered block
align_right Bool Optional Right-aligned block
valign_middle Bool Optional Vertically centered block
valign_bottom Bool Optional Block vertically-aligned to the bottom
text RichText Optional Content
colspan int Optional For how many columns should this cell extend
rowspan int Optional For how many rows should this cell extend

Type: PageTableCell

Example:

$pageTableCell = ['_' => 'pageTableCell', 'header' => Bool, 'align_center' => Bool, 'align_right' => Bool, 'valign_middle' => Bool, 'valign_bottom' => Bool, 'text' => RichText, 'colspan' => int, 'rowspan' => int];