GetSize - FormList

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