简体   繁体   中英

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

We have an adaptive card in our bot with two different columnsets - first columnset to provide the user with options to select and the second columnset for the user to select if he is not interested in selecting an option.

The issue is with adjusting the font size for the text in second columnset choice set. Is there any attribute I could use to adjust the size of text in this choiceset?

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

根据此处此处的模式探索,没有可用于配置字体大小的属性。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM