How to check if a text box is empty?

Is there anyway to check if a textbox is empty instead of using if textbox.Text == "" then?

4 Likes

Check the length of the Text:

if #TextBox.Text > 0 then
-- is not empty
else
-- is empty
end
14 Likes