MadelineProtoDocs/docs/API_docs/constructors/keyboardButtonRow.md

764 B

title description image
keyboardButtonRow Inline keyboard row https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: keyboardButtonRow

Back to constructors index

Inline keyboard row

Attributes:

Name Type Required Description
buttons Array of KeyboardButton Yes Bot or inline keyboard buttons

Type: KeyboardButtonRow

Example:

$keyboardButtonRow = ['_' => 'keyboardButtonRow', 'buttons' => [KeyboardButton, KeyboardButton]];

Or, if you're into Lua:

keyboardButtonRow={_='keyboardButtonRow', buttons={KeyboardButton}}