Home > Mobile >  Adding image to the SectionHeaderItem in Google Forms Apps script
Adding image to the SectionHeaderItem in Google Forms Apps script

Time:02-11

I've been using Google Apps Scripts to generate Google Forms and sent be email. However, i've been trying to add a logo to the header section however there is no function or a possible way that I can find online of adding it.

I can add images using ImageItem(), however, this does not add to the header section and stays as a single item at the start of the form.

Is there anyway of adding images to the header section using google apps script or thats only possible using the customizable UI made for designing google forms?

CodePudding user response:

Assuming that for "header section" you mean the form header, the Forms Service doesn't include any class for the form header, so the only way to customize it is by using the Google Forms editor. By the other hand SectionHeaderItem, doesn't allow to insert images, only a title and a description.

Reference

  • Related