
Announcements
I have a label with AutoHeight = true with a base Height = 30 where the Text property is set to the text value in a Text Input. When that Text Input is reset (blanked) after containing text that forces the label to increase it's height, the label's height does not always "reset" back to the default 30 height. Is there a way to force the label to reset?
I use this method a fair bit. Try this
// label properties
Autoheight: true
Text: textInputName.Text
Height: 90 (but this can be anything really)
// TextInput properties
Height:
If(
Len(labelName.Text)>0,
Min(110, labelName.Height+20),
30
)
I also make sure Font, Font size and Font weight are the same for both TextInput and Label.