Background for Fallout 4
Member of the FormList script
intfunctionGetSize()Native

Description

Wiki Description

Returns the number of items in the list.

Documentation Comment

Returns the number of forms in the list


Caveats


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
EndWhile

Auto-Generated Example

int returnedValue = myFormList__toCallFunctionOn.GetSize()

Related Pages


Additional References

View this function’s page on the Fallout 4 Creation Kit Wiki

Some data provided by the Fallout 4 Creation Kit Wiki. Licensed under the Creative Commons Attribution-Share Alike 4.0 license.