GetSize - FormList
Revision as of 15:27, 18 October 2011 by imported>Rhavlovick (1 revision: Clobber re-import by Henning)
Member of: FormList Script
Returns the number of items in the list.
Syntax
int Function GetSize() native
Parameters
None
Return Value
Returns the number of forms in the list
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