ITable board = MessageBuilder.Elements.CreateTable(messageToSend. ToDevice, "Board", 4, 1);
board.Style.Align = AlignmentType.Left;
board.Mode = TableSendModeType.Replace;
board[0, 0].Content.Body = "this is block 1";
board[1, 0].Content.Body = "this is block 2";
board[2, 0].Content.Body = "this is block 3";
board[3, 0].Content.Body = "this is block 4";
BoxStyle bs = new BoxStyle();
bs.Align = AlignmentType.Left;
bs.Background = Color.Azure;
bs.BorderColor = Color.Black;
bs.Border.Set(1);
bs.Padding.Set(2);
board.Col(0).Style = bs;
ISelectAction correctselectAction = board.ActionCreator.Select(1, true);
board.SelectionMode = SelectionRectType.Fill;
board[0, 0].Action = correctselectAction;
board[1, 0].Action = correctselectAction;
board[2, 0].Action = correctselectAction;
board[3, 0].Action = correctselectAction;
return board;