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


IMdList.Value Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geoprocessing > ESRI.ArcGIS.Geoprocessing > Interfaces > IM > IMdList Interface > IMdList.Value Property
ArcGIS Developer Help

IMdList.Value Property

The value at the specifed index.

[Visual Basic .NET]
Public Function get_Value ( _
    ByVal Index As Integer _
) As IGPValue
[Visual Basic .NET]
Public Sub set_Value ( _
    ByVal Index As Integer, _
    ByVal ppValue As IGPValue _
)
[C#]
public IGPValue get_Value (
    int Index
);
[C#]
public void set_Value (
    int Index,
    IGPValue ppValue
);
[C++]
HRESULT get_Value(
  long Index,
  IGPValue** ppValue
);
[C++]
HRESULT putref_Value(
  long Index,
  IGPValue* ppValue
);
[C++]
Parameters
Index [in]

Index is a parameter of type long ppValue [out, retval]
ppValue is a parameter of type IGPValue** Index [in]
Index is a parameter of type long ppValue [in]
ppValue is a parameter of type IGPValue*

Product Availability

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

See Also

IMdList Interface