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
a função correta é (label).TextFont.Size = (número)
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