Define possible values for a property in Flex - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T14:39:43Z http://stackoverflow.com/feeds/question/1073139 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1073139/define-possible-values-for-a-property-in-flex 2 Define possible values for a property in Flex thorseye 2009-07-02T08:21:43Z 2009-07-02T12:45:25Z <p>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 <em>enabled</em> or <em>visible</em>, where the user gets a list of "true/false". </p> http://stackoverflow.com/questions/1073139/define-possible-values-for-a-property-in-flex/1074138#1074138 1 Answer by riaflexer for Define possible values for a property in Flex riaflexer 2009-07-02T12:45:25Z 2009-07-02T12:45:25Z <p>Use the <a href="http://livedocs.adobe.com/flex/3/html/metadata%5F3.html#159728" rel="nofollow">Inspectable</a> metadata tag. In your case you'll want to explicitly use the <em>enumeration</em> attribute.</p> <pre><code>[Inspectable( enumeration="one,two,three" )] public var myProp:String; </code></pre>