KB-33266: Increasing a Text’s font at runtime.

Question:

How can I increase the font on a Text object at runtime?

Solution:

You cannot edit the font of a Text object at run time. However, you can use the Label object (MSForms) and change the Font.Size property via scripts.

For example: Label1.Font.Size = 14

Print Friendly, PDF & Email

Este artigo foi útil? Was this helpful?

Classificação média - Average rating 0 / 5. Count: 0

Thoughts on “KB-33266: Increasing a Text’s font at runtime.

    1. Bom dia Guilherme!

      Obrigado pelo comentário!

      Para o objeto “Label”, o correto é conforme descrito no artigo:
      ‘NomeObjLabel.Font.Size = Tamanho
      Label01.Font.Size = 20

      Para o objeto “DrawString”, que acredito ser o comentado por ti, é conforme disse:
      ‘NomeObjDrawString.TextFont.Size = Tamanho
      Text01.TextFont.Size = 20

      Atenciosamente,
      Marco Antonio

Leave a Reply

Your email address will not be published.Required fields are marked *