IOutputFileParameters

Description:

IOutputFileParameters contains the file parameters after calling a server job.

import "OxSvrSpt.idl"

Properties:

long Count [get]
IFileParameter Item([in] VARIANT Index) [get]

Documentation of Properties:

  • long Count [get]

Count returns the number of elements in the collection.

Parameters:

[out]: plNumber (VB return value) number of elements in the collection.

  • IFileParameter Item([in] VARIANT Index) [get]

Item returns the specified element of the collection based on position or key.

If a position outside the valid index is specified, an error with the error value errCollectionIndexOutOfRange is returned. If the item cannot be found, an error with the value errCollectionItemNotFound is returned.

Parameters:

[in]: Index position or name of the requested element.

[out]: ppItem (VB return value) corresponding FileParameter object.