如何更改机器人自适应卡中选择集的文本字体大小

How to change the text font size for a choiceset in bot adaptive card

我们的机器人中有一个自适应卡片,有两个不同的列集 - 第一个列集为用户提供 select 的选项,第二个列集供用户 select 如果他不感兴趣在 select 选项中。

问题在于调整第二个列集选择集中文本的字体大小。有没有我可以用来调整此选择集中文本大小的属性?

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
                }
            }
        }
    }
}

根据架构探索here and here,没有可用于配置字体大小的属性。