Packagemx.core
Classpublic class FlexShape
InheritanceFlexShape Inheritance flash.display.Shape
Subclasses ProgrammaticSkin

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

FlexShape is a subclass of the Player's Shape class. It overrides the toString() method to return a string indicating the location of the object within the hierarchy of DisplayObjects in the application.



Public Methods
 MethodDefined By
  
Constructor.
FlexShape
  
toString():String
[override] Returns a string indicating the location of this object within the hierarchy of DisplayObjects in the Application.
FlexShape
Constructor Detail
FlexShape()Constructor
public function FlexShape()

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

Constructor.

Sets the name property to a string which is returned by the createUniqueName() method of the mx.utils.NameUtils class.

This string is the name of the object's class concatenated with an integer that is unique within the application, such as "FlexShape15".

See also

flash.display.DisplayObject.name
mx.utils.NameUtil.createUniqueName()
Method Detail
toString()method
override public function toString():String

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

Returns a string indicating the location of this object within the hierarchy of DisplayObjects in the Application. This string, such as "MyApp0.HBox5.FlexShape15", is built by the displayObjectToString() method of the mx.utils.NameUtils class from the name property of the object and its ancestors.

Returns
String — A String indicating the location of this object within the DisplayObject hierarchy.

See also

flash.display.DisplayObject.name
mx.utils.NameUtil.displayObjectToString()