GetAt - FormList
Jump to navigation
Jump to search
Member of: FormList Script
Returns the form at a specified index in the list.
Syntax[edit | edit source]
Form Function GetAt(int aiIndex) native
Parameters[edit | edit source]
- aiIndex: 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
Return Value[edit | edit source]
Returns the form at index aiIndex, none in case of error (such as wrong index value)
Examples[edit | edit source]
; 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
EndWhile