Is there a programmatic way to know if a property is Getter or Setter?
public function set speed(v:Number):void
{
_speed=v;
}
public function get speed():Number
{
return _speed;
}
--
-- Keith H --
Is there a programmatic way to know if a property is Getter or Setter?
public function set speed(v:Number):void
{
_speed=v;
}
public function get speed():Number
{
return _speed;
}
--
-- Keith H --