CS3 JS: Reflection

CS3 JavaScript

Reflection

 Provides information about a class.

QuickLinks

find, toXML

Properties

PropertyTypeAccessDescription
descriptionstringreadonlyThe long description text.
helpstringreadonlyThe short description text.
methodsArray of ReflectionInforeadonlyAn array of method descriptions.
namestringreadonlyThe class name.
propertiesArray of ReflectionInforeadonlyAn array of property descriptions.
sampleCodestringreadonlySample code, if present.
sampleFileFilereadonlyA file containing sample code. May be null.
staticMethodsArray of ReflectionInforeadonlyAn array of class method descriptions.
staticPropertiesArray of ReflectionInforeadonlyAn array of class property descriptions.

Methods

ReflectionInfo find (name:string)
Find an element description by name.

ParameterTypeDescription
namestringThe name of the element to find.

XML toXML ()
Return this class information as XML in OMV format.

Element of

Object.reflect

ReflectionInfo.parent

Return

Reflection Dictionary.getClass (name:string)

Contents :: Index