GetCount - FormList

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

Redirect page

Redirect to:

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

See Also