我们的机器人中有一个自适应卡,具有两个不同的列集-第一个列集为用户提供选择选项,第二个列集供用户选择(如果他对选择选项不感兴趣)。
问题在于调整第二个列集选择集中的文本的字体大小。在此选择集中,我可以使用任何属性来调整文本的大小吗?
new ColumnSet()
{
Columns = new List<Column>()
{
new Column()
{
Items = new List<CardElement>()
{
new ChoiceSet()
{
Id = "FeedbackOptions",
Choices = FeedbackChoice,
Separation= SeparationStyle.Default,
IsMultiSelect =true,
Type ="Input.ChoiceSet",
Style = ChoiceInputStyle.Expanded
}
}
}
}
}