- Found in:
- Vanilla
Caveats
Parameters
intaiIndex
CK Wiki Description
The index in the list we want to fetch the form from
- The index is 0-based. If a list has 3 items in it, valid indices are:0, 1 and 2
Examples
; Print out the forms in the list
FormList property list auto
int index = 0
While (index < list.GetSize())
Debug.Trace("Form " + index + " is " + list.GetAt(index))
index = index + 1
EndWhileAuto-Generated Example
int myInt__aiIndex
Form returnedValue = myFormList__toCallFunctionOn.GetAt(myInt__aiIndex)Additional References
View this function’s page on the Fallout 4 Creation Kit Wiki
