Define possible values for a property in Flex - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T14:39:43Zhttp://stackoverflow.com/feeds/question/1073139http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1073139/define-possible-values-for-a-property-in-flex2Define possible values for a property in Flexthorseye2009-07-02T08:21:43Z2009-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#10741381Answer by riaflexer for Define possible values for a property in Flexriaflexer2009-07-02T12:45:25Z2009-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>