Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 14 Current »


Property Summary
Array #allnames
Get all form names of the current solution.
Number #length
Get the number of forms loaded into memory.

Property Details
allnames
Get all form names of the current solution.
Returns
Array
Sample
var allFormNames = forms.allnames;
application.output("There are " + allFormNames.length + " forms.");
for (var i=0; i<allFormNames.length; i++) 
{
	var f = forms[allFormNames[i]];
	application.output("Form " + allFormNames[i] + " has selected index " + f.controller.getSelectedIndex());
}
length
Get the number of forms loaded into memory.
Returns
Number
Sample
application.output("Number of forms loaded into memory: " + forms.length);
  • No labels