KnownTypes: Difference between revisions
From Catglobe Wiki
More actions
CGHelpdesk (talk | contribs)  Created page with "= knownTypes =  __NOTOC__   <br/>Get the list of names of all CGScript classes  == <span style="color:#a52a2a;">'''Syntax'''</span> ==  knownTypes()  == <span style="color:#a5..."  | 
				CGHelpdesk (talk | contribs) No edit summary  | 
				||
| Line 4: | Line 4: | ||
<br/>Get the list of names of all CGScript classes  | <br/><br/>Get the list of names of all CGScript classes  | ||
== <span style="color:#a52a2a;">'''Syntax'''</span> ==  | == <span style="color:#a52a2a;">'''Syntax'''</span> ==  | ||
Revision as of 09:50, 11 December 2013
knownTypes
Get the list of names of all CGScript classes
Syntax
knownTypes()
Return type
An array of strings
Examples
array a = knownTypes(); 
for(number i = 0; i < a.Count; i++) { 
 print(a[i]); 
}