This document is archived and information here might be outdated.  Recommended version.


IGPFunction.ParameterInfo Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geoprocessing > ESRI.ArcGIS.Geoprocessing > Interfaces > IG > IGPFunction Interface > IGPFunction.ParameterInfo Property
ArcGIS Developer Help

IGPFunction.ParameterInfo Property

The list of parameters accepted by the geoprocessing function.

[Visual Basic .NET]
Public ReadOnly Property ParameterInfo As IArray
[C#]
public IArray ParameterInfo {get;}
[C++]
HRESULT get_ParameterInfo(
  IArray** params
);
[C++]
Parameters
params [out, retval]

params is a parameter of type IArray**

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Remarks

The ParameterInfo property is the place where a function tool's parameters are defined. It returns an IArray of parameter objects (IGPParameter); these objects define the characteristics of the input and output parameters.

See Also

IGPFunction Interface