I am writing a bot telegram in C #, using the Telegram.Bot library. When there is a lot of text on the Callback button, it does not fit on it and the telegrams automatically appends "...".
Is there a way to resize a button so that all the text fits on it or to make the text automatically scroll over the button?
if(ev.CallbackQuery.Data == "callback1") { var keyboard = new Telegram.Bot.Types.ReplyMarkups.InlineKeyboardMarkup( new Telegram.Bot.Types.InlineKeyboardButton[][] { new [] { // First column new Telegram.Bot.Types.InlineKeyboardButton("Button text","callback2"), }, new [] { new Telegram.Bot.Types.InlineKeyboardButton( "Thi is exampl. example example example.A lot of text that does not fit on the button","callback3"), }, } ); await Bot.SendTextMessageAsync(message.Chat.Id, "Message text", false, false, 0, keyboard, Telegram.Bot.Types.Enums.ParseMode.Default); } Here's what it looks like:
