SetLocalItemProperty

From Dragon Age Toolset Wiki
Revision as of 17:13, 29 July 2009 by BryanDerksen (Talk | contribs) (1 revision: Importing auto-generated function articles)

Jump to: navigation, search

This page was generated by Sunjammer's Dragon Age Script Parser.

The parser was able to extract and/or match all the information required, however it has flagged this page as containing one or more joins. A join occurs when the parser encounters a single line entry (such as parameter descriptions or remarks) which has been split over multiple lines. The parser joins these lines together to prevent the information being omitted, however any original formatting will have been lost.

This page must be reviewed by a knowledgeable scripter as it will probably require updating. If the join occurred in a parameter description it will probably be necessary to move the additional information to the Description section below. Once identified, the issue in the source file should be reported to BioWare.

Please remove the {{Generated with joins}} tag once the page has been corrected.

Sets a local itemproperty variable on an object.

void SetLocalItemProperty(
object oObject,
string sVarName,
itemproperty iItemProperty
);
Parameters:
oObject
Object to set the variable on
sVarName
The name of the variable to set
iItemProperty
The value of the itemproperty variable to set
Returns:

Nothing.

Source:

script.ldf

Description

Sets a local itemproperty variable sVarName on the specified object.

Remarks

It should be noted that item properties taken from current list on an object are just copies of those item properties, not references to them.


See also

GetLocalItemProperty