gxGetDocumentList () : string[]

Returns a list of all active projects.

Returns:

string[] - array of the project document IDs. Normally a document ID consists of the string "document" followed by a number, such as "document0", "document1", etc.

Example:

string[] lstDocuments = gxGetDocumentList();
for (int i = 0; i < lstDocuments.size(); ++i)
print(lstDocuments[i]);

See also:

gxImportProject, gxStartAction

► latest version online