Gmail插件中的多行TextInput高度

时间:2018-09-24 21:06:01

标签: google-apps-script gmail-addons

我在TextInput中填充电子邮件正文,该TextInput设置为以多行模式显示。现在,由于电子邮件正文很大,其他附加内容显然已向下推到屏幕下方。为了防止这种情况,我决定将电子邮件正文填充到其他部分中,并将其设置为可折叠。效果很好。

现在,当我展开折叠部分时,多行TextInput的高度将减小为单行输入的高度。参见附件GIF。

任何人都知道是否有一种制作方法,可以使该部分在展开后占据全高,或者至少以某种方式设置输入的高度?在支持此功能的Card Service API中找不到任何东西。

这是我创建节和文本输入的方式

  var descriptionSection = CardService.newCardSection()
                          .setCollapsible(true)
                          .setHeader('Description');

descriptionSection.addWidget(CardService.newTextInput()
         .setFieldName("Description")
         .setMultiline(true)
         .setValue(emailParameters.body));
card.addSection(descriptionSection);

enter image description here

0 个答案:

没有答案