C# 클래스 SGDE.Content.Code.Library.Object

The Object class is at the root of the ActionScript class hierarchy.
파일 보기 프로젝트 열기: sgdc/sgdc-old

공개 메소드들

메소드 설명
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.

비공개 메소드들

메소드 설명
Object ( bool getConstructor, bool getType ) : System

메소드 상세

Object() 공개 메소드

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

hasOwnProperty() 공개 메소드

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

isPrototypeOf() 공개 메소드

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.
리턴 Boolean

propertyIsEnumerable() 공개 메소드

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

toLocaleString() 공개 메소드

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

toString() 공개 메소드

Returns the string representation of the specified object.
public toString ( ) : String
리턴 String

valueOf() 공개 메소드

Returns the primitive value of the specified object.
public valueOf ( ) : Object
리턴 Object