Difference between revisions of "NET:LavishScriptAPI.LavishScriptObject.GetIndex"

From Lavish Software Wiki
Jump to navigation Jump to search
 
 
Line 1: Line 1:
 
== Overview ==
 
== Overview ==
Used to retrieve a value from the indexer of a [[NET:Lavish.InnerSpace.dll#LavishScriptObject|LavishScriptObject]] object, results in another [[NET:Lavish.InnerSpace.dll#LavishScriptObject|LavishScriptObject]] object.
+
Used to retrieve a value from the indexer of a [[NET:LavishScriptAPI.LavishScriptObject|LavishScriptObject]] object, results in another [[NET:LavishScriptAPI.LavishScriptObject|LavishScriptObject]] object.
  
 
=== Reference Library ===
 
=== Reference Library ===
Line 9: Line 9:
 
*[[NET:Lavish.InnerSpace.dll#LavishScriptAPI_namespace|LavishScriptAPI namespace]]
 
*[[NET:Lavish.InnerSpace.dll#LavishScriptAPI_namespace|LavishScriptAPI namespace]]
 
** [[NET:Lavish.InnerSpace.dll#LavishScript|LavishScript class]]
 
** [[NET:Lavish.InnerSpace.dll#LavishScript|LavishScript class]]
*** [[NET:Lavish.InnerSpace.dll#LavishScript.LavishScriptObject|LavishScriptObject class]]
+
*** [[NET:LavishScriptAPI.LavishScriptObject|LavishScriptObject class]]
 
**** GetIndex function
 
**** GetIndex function
  
 
== Declaration ==
 
== Declaration ==
  public LavishScriptObject GetIndex(string[] indices)
+
  public LavishScriptObject GetIndex(params string[] indices)
  
 
=== Parameters ===
 
=== Parameters ===
* string[] indices
+
* params string[] indices
 
: Parameters to pass to the indexer for dynamic retrieval
 
: Parameters to pass to the indexer for dynamic retrieval
  
 
=== Return Value ===
 
=== Return Value ===
* [[NET:Lavish.InnerSpace.dll#LavishScriptObject|LavishScriptObject]]
+
* [[NET:LavishScriptAPI.LavishScriptObject|LavishScriptObject]]
 
: The requested object, or '''null'''
 
: The requested object, or '''null'''
  
Line 26: Line 26:
  
 
== See Also ==
 
== See Also ==
* [[NET:Lavish.InnerSpace.dll#LavishScriptObject|LavishScriptObject]]
+
* [[NET:LavishScriptAPI.LavishScriptObject|LavishScriptObject]]
 
* [[IS:.NET|Inner Space .NET]]
 
* [[IS:.NET|Inner Space .NET]]
 
* [[NET:Lavish.InnerSpace.dll|Lavish.InnerSpace.dll]]
 
* [[NET:Lavish.InnerSpace.dll|Lavish.InnerSpace.dll]]

Latest revision as of 22:56, 16 December 2006

Overview

Used to retrieve a value from the indexer of a LavishScriptObject object, results in another LavishScriptObject object.

Reference Library

Lavish.InnerSpace.dll

Fully Qualified Name

LavishScriptAPI.LavishScript.Objects.GetObject

Declaration

public LavishScriptObject GetIndex(params string[] indices)

Parameters

  • params string[] indices
Parameters to pass to the indexer for dynamic retrieval

Return Value

The requested object, or null

Examples

See Also