I’m working on a Flex Mobile Project and I don’t know which is the opposite of none.
For example:
textArea.setStyle("borderVisible", "none");
Which word I have to put to replace none for have got visible border?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
borderVisibleis a Boolean type, so you can set its value like this:I’m surprised to see the “none” value gets parsed at all. Then again, it’s probably auto-cast to a Boolean.