Difference between revisions of "GetM2DAResource"

From Dragon Age Toolset Wiki
Jump to: navigation, search
m (1 revision: Importing auto-generated function articles)
(add parameter 4 default)
Line 1: Line 1:
{{Generated with joins}}
 
 
{{dafunction
 
{{dafunction
 
|name=GetM2DAResource
 
|name=GetM2DAResource
Line 15: Line 14:
 
|param4name=s2da
 
|param4name=s2da
 
|param4desc=(optional) if n2da is -1 and this is a valid resource, it will retrieve the 2da based on the name instead of the index. Note that this should be avoided when possible.   
 
|param4desc=(optional) if n2da is -1 and this is a valid resource, it will retrieve the 2da based on the name instead of the index. Note that this should be avoided when possible.   
 +
|param4default = ""
 
|returntype=resource
 
|returntype=resource
 
|returndesc=Returns a resrouce specified by the parameters.  
 
|returndesc=Returns a resrouce specified by the parameters.  

Revision as of 22:42, 30 July 2009

Returns a resource from a 2DA.

resource GetM2DAResource(
int n2DA,
string sColumn,
int nRow,
string s2da = ""
);
Parameters:
n2DA
The 2DA to access
sColumn
The name of the column to access
nRow
The 0 based index of the row to access
s2da
(optional) if n2da is -1 and this is a valid resource, it will retrieve the 2da based on the name instead of the index. Note that this should be avoided when possible.
Returns:

Returns a resrouce specified by the parameters.

Source:

script.ldf

Description

Returns a 2DA resource on the specified Row and Column values.