1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2024-12-16 11:38:11 +02:00
OpenIntegrations/docs/en/md/Telegram/Data-sending/Form-keyboard-from-button-array.md
2024-06-05 10:19:46 +00:00

1.5 KiB

sidebar_position
12

Generate keyboard from array of buttons

Generates a simple JSON keyboard from an array of buttons for a message or bottom panel

Function FormKeyboardFromButtonArray(Val ButtonArray, Val UnderMessage = False, Val OneByOne = True) Export

Parameter CLI option Type Destination
ButtonArray --buttons Array of String Array of buttons
UnderMessage --under Boolean Keyboard under the message or on the bottom panel
OneByOne --column Boolean True > buttons are displayed in a column, False > in a row

Returns: String - Keyboard JSON

	
 
 ButtonArray = New Array;
 ButtonArray.Add("Great");
 ButtonArray.Add("Ok");
 ButtonArray.Add("Bad");
 
 Keyboard = OPI_Telegram.FormKeyboardFromButtonArray(ButtonArray, True, True);
 

	
 
 oint telegram FormKeyboardFromButtonArray --buttons %buttons% --under %under% --column %column%



{
 "inline_keyboard":[
 [
 {
 "text":"\u041E\u0442\u043B\u0438\u0447\u043D\u043E",
 "callback_data":"\u041E\u0442\u043B\u0438\u0447\u043D\u043E"
 }
 ],
 [
 {
 "text":"\u041D\u043E\u0440\u043C\u0430\u043B\u044C\u043D\u043E",
 "callback_data":"\u041D\u043E\u0440\u043C\u0430\u043B\u044C\u043D\u043E"
 }
 ],
 [
 {
 "text":"\u041F\u043B\u043E\u0445\u043E",
 "callback_data":"\u041F\u043B\u043E\u0445\u043E"
 }
 ]
 ],
 "rows":1
 }