Difference between revisions of "GetCount - FormList"

615 bytes removed ,  01:37, 17 February 2012
This function doesn't seem to exist as an alias of GetSize in the FormList script, so deleting the page
imported>Rhavlovick
m (1 revision: Clobber re-import by Henning)
 
imported>Cipscis
(This function doesn't seem to exist as an alias of GetSize in the FormList script, so deleting the page)
 
Line 1: Line 1:
#REDIRECT [[GetSize_-_FormList]]
{{afd}}
 
[[Category:Scripting]]
[[Category:Papyrus]]
'''Member of:''' [[FormList Script]]
 
Returns the number of items in the list.
 
== Syntax ==
<source lang="papyrus">
int Function GetSize() native
</source>
 
== Parameters ==
None
 
== Return Value ==
Returns the number of forms in the list
 
== Examples ==
<source lang="papyrus">
; 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
</source>
 
== See Also ==
*[[FormList Script]]
*[[GetAt - FormList]]
Anonymous user