Locates the named parameter in the parameter bag and returns the value of the object it holds.


Namespace: FileNet.Api.Action
Assembly: FileNet.Api (in filenet.api.dll)

Syntax

Visual Basic (Declaration)
Public Overridable Function GetInteger32ListValue( _ 
   ByVal name As String _ 
) As IInteger32List
C#
public virtual IInteger32List GetInteger32ListValue(
   string name
)
C++
public:
 virtual IInteger32List GetInteger32ListValue(
   String name
)
J#
public virtual IInteger32List GetInteger32ListValue(
   string name
)
JScript
public virtual  function GetInteger32ListValue(
   name : String
) : IInteger32List

Parameters

name
A String that specifies the parameter name to retrieve.

Return Value

The value of the parameter as an IInteger32List object. Returns Null if the parameter cannot be found in the parameter bag.

See Also