vote up 2 vote down star
1

In Flex, is it possible to include some kind of MetaData to a property, to be able to list all possible values that a property can use? I want to be able to list the values when calling the property from MXML, as in the case of for example the property enabled or visible, where the user gets a list of "true/false".

flag

1 Answer

vote up 1 vote down check

Use the Inspectable metadata tag. In your case you'll want to explicitly use the enumeration attribute.

[Inspectable( enumeration="one,two,three" )]
public var myProp:String;
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.