C# Class SGDE.Content.Code.Library.Object

The Object class is at the root of the ActionScript class hierarchy.
Afficher le fichier Open project: sgdc/sgdc-old

Méthodes publiques

Méthode Description
Object ( ) : System

Creates an Object object and stores a reference to the object's constructor method in the object's constructor property.

hasOwnProperty ( String name ) : Boolean

Indicates whether an object has a specified property defined.

isPrototypeOf ( Object theClass ) : Boolean

Indicates whether an instance of the Object class is in the prototype chain of the object specified as the parameter.

propertyIsEnumerable ( String name ) : Boolean

Indicates whether the specified property exists and is enumerable.

toLocaleString ( ) : String

Returns the string representation of this object, formatted according to locale-specific conventions.

toString ( ) : String

Returns the string representation of the specified object.

valueOf ( ) : Object

Returns the primitive value of the specified object.

Private Methods

Méthode Description
Object ( bool getConstructor, bool getType ) : System

Method Details

Object() public méthode

Creates an Object object and stores a reference to the object's constructor method in the object's constructor property.
public Object ( ) : System
Résultat System

hasOwnProperty() public méthode

Indicates whether an object has a specified property defined.
public hasOwnProperty ( String name ) : Boolean
name String The property of the object.
Résultat Boolean

isPrototypeOf() public méthode

Indicates whether an instance of the Object class is in the prototype chain of the object specified as the parameter.
public isPrototypeOf ( Object theClass ) : Boolean
theClass Object The class to which the specified object may refer.
Résultat Boolean

propertyIsEnumerable() public méthode

Indicates whether the specified property exists and is enumerable.
public propertyIsEnumerable ( String name ) : Boolean
name String The property of the object.
Résultat Boolean

toLocaleString() public méthode

Returns the string representation of this object, formatted according to locale-specific conventions.
public toLocaleString ( ) : String
Résultat String

toString() public méthode

Returns the string representation of the specified object.
public toString ( ) : String
Résultat String

valueOf() public méthode

Returns the primitive value of the specified object.
public valueOf ( ) : Object
Résultat Object