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


IGPUtilities.DecodeDETable Method (ArcObjects .NET 10.4 SDK)
ArcObjects Library Reference (Geoprocessing)  

IGPUtilities.DecodeDETable Method

Returns the table data element specified by the given geoprocessing value object.

[Visual Basic .NET]
Public Function DecodeDETable ( _
    ByVal pValue As IGPValue _
) As IDETable
[C#]
public IDETable DecodeDETable (
    IGPValue pValue
);
[C++]
HRESULT DecodeDETable(
  IGPValue* pValue,
  IDETable** ppDETable
);
[C++]

Parameters pValue [in]
pValue is a parameter of type IGPValue ppDETable [out, retval]
ppDETable is a parameter of type IDETable

Product Availability

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

Remarks

The DecodeDETable method is a wrapper function to quickly create a value from an object. It returns the table data element specified by the given geoprocessing value object. For a code sample see below.

See Also

IGPUtilities Interface