APGen Documentation Previous Topic: APGScript.Values Collection Next Topic: APGScript.Error Event Parent Topic: APGScript Object    APGScript Object
APGScript.Arguments Collection
See Also:

The APGScript.Arguments collection contains arguments passed to the script.  It is of type ScriptArguments.

Syntax

VBScript:

oAPGScript.Arguments[ ( index ) | .property | .method ]

JScript:

oAPGScript.Arguments[ ( index ) | .property | .method ];

Objects

oAPGScript An APGScript object.
oAPGScript.Arguments A ScriptArguments object.

Collection Parameters

index A zero-based index to the collection.

Notes

See the ScriptArguments Object for the properties and methods that apply to this object.

APGScript.Arguments returns the same collection as Script.ArgumentsAPGScript.Arguments allows access to script arguments from outside of the script, whereas Script.Arguments allows access to script arguments from inside of the script.  This duality is useful for passing arguments into and out of an APG script.

Applies To

APGScript Object