Package | org.axiis.utils |
Class | public class BooleanExpression |
Inheritance | BooleanExpression ![]() |
For example, this markup will populate two labels with the text
"true" but (a || b || c || d || e || true)
will only have been
evaluated once.
<BooleanExpression id="be0" value="{a || b || c || d || e || true}" />
<mx:Label text="{be0.value}" />
<mx:Label text="{be0.value}" />
Property | Defined By | ||
---|---|---|---|
value : Boolean
The stored Boolean value. | BooleanExpression |
Method | Defined By | ||
---|---|---|---|
Constructor. | BooleanExpression |
Event | Summary | Defined By | ||
---|---|---|---|---|
Dispatched when the value property has changed. | BooleanExpression |
value | property |
value:Boolean
[read-write] The stored Boolean value. By using binding to set this property and then binding other properties to it, you can reduce needless computations.
This property can be used as the source for data binding.
public function get value():Boolean
public function set value(value:Boolean):void
BooleanExpression | () | Constructor |
public function BooleanExpression()
Constructor.
valueChanged | Event |
Dispatched when the value property has changed.