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


ICodedValueDomain.Name Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geodatabase > ESRI.ArcGIS.GeoDatabase > Interfaces > IC > ICodedValueDomain Interface > ICodedValueDomain.Name Property
ArcGIS Developer Help

ICodedValueDomain.Name Property

The code name for the specified code index.

[Visual Basic .NET]
Public Function get_Name ( _
    ByVal Index As Integer _
) As String
[C#]
public string get_Name (
    int Index
);
[C++]
HRESULT get_Name(
  long Index,
  System.String* Name
);
[C++]
Parameters
Index [in]

Index is a parameter of type long Name [out, retval]
Name is a parameter of type BSTR*

Product Availability

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

Description

Name returns the name associated with a given coded value belonging to this domain by the index parameter passed in. The return value is a string type.

Remarks

This property returns the name of valid coded value for the ith coded value in the coded value domain, where i is the index of the coded value as a Long . The name is returned as a String .

See Also

ICodedValueDomain Interface