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


IGPUtilities.FindField Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geoprocessing > ESRI.ArcGIS.Geoprocessing > Interfaces > IG > IGPUtilities Interface > IGPUtilities.FindField Method
ArcGIS Developer Help

IGPUtilities.FindField Method

Returns the field object with the specified name in the given geoprocessing value object.

[Visual Basic .NET]
Public Function FindField ( _
    ByVal pGPValue As IGPValue, _
    ByVal Name As String _
) As IField
[C#]
public IField FindField (
    IGPValue pGPValue,
    string Name
);
[C++]
HRESULT FindField(
  IGPValue* pGPValue,
  BSTR Name
);
[C++]
Parameters
pGPValue [in]

pGPValue is a parameter of type IGPValue* Name [in]
Name is a parameter of type BSTR

Product Availability

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

Remarks

The FindField method returns the field object of the specified name in the given geoprocessing value object.

See Also

IGPUtilities Interface