MadelineProtoDocs/docs/API_docs/constructors/pageTableRow.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

797 B

title description image
pageTableRow Page table row https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: pageTableRow

Back to constructors index

Page table row

Attributes:

Name Type Required Description
cells Array of PageTableCell Yes Cells

Type: PageTableRow

Example:

$pageTableRow = ['_' => 'pageTableRow', 'cells' => [PageTableCell, PageTableCell]];

PWRTelegram json-encoded version:

{"_": "pageTableRow", "cells": [PageTableCell]}

Or, if you're into Lua:

pageTableRow={_='pageTableRow', cells={PageTableCell}}