GetSize - FormList

Revision as of 16:27, 18 October 2011 by imported>Vitamant (1 revision: Clobber re-import by Henning)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Member of: FormList Script

Returns the number of items in the list.

SyntaxEdit

int Function GetSize() native

ParametersEdit

None

Return ValueEdit

Returns the number of forms in the list

ExamplesEdit

; 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

See AlsoEdit