Change font size for all label

I would like to republish an app that contains many labels with font size 18 by setting font size 22 for all labels, is there a way to avoid changing the font size of each label one by one? Is there a way to set all labels to font size 22 at once?
Thank you

There are two ways to do this:

  • Highlight each of the Labels in the Designer with Ctrl-Click to group them, and change the font size attribute for the group
  • Change the font size at run time using the generic set Any Label fontsize block in a loop over a list of all the Label components.

Sample:

1 Like

Thank you very much!