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


IStringRemap.LoadStringsFromTable Method (ArcObjects .NET 10.4 SDK)
ArcObjects Library Reference (GeoAnalyst)  

IStringRemap.LoadStringsFromTable Method

Loads string remap records from a table object.

[Visual Basic .NET]
Public Sub LoadStringsFromTable ( _
    ByVal remapTable As ITable, _
    ByVal OutFieldName As String, _
    ByVal inFieldName As String, _
    [ByVal mappingFieldName As Object] _
)
[C#]
public void LoadStringsFromTable (
    ITable remapTable,
    string OutFieldName,
    string inFieldName,
    object mappingFieldName
);
[C#]

Optional Values

mappingFieldName   To indicate that this parameter is undefined, pass in Type.Missing.
[C++]
HRESULT LoadStringsFromTable(
  ITable* remapTable,
  BSTR OutFieldName,
  BSTR inFieldName,
  VARIANT mappingFieldName
);
[C++]

Parameters remapTable [in]
remapTable is a parameter of type ITable OutFieldName [in] OutFieldName is a parameter of type BSTR inFieldName [in] inFieldName is a parameter of type BSTR mappingFieldName [optional] mappingFieldName is a parameter of type VARIANT
To indicate this parameter is undefined pass in a VARIANT with type VT_ERROR and scode value of DISP_E_PARAMNOTFOUND.

Product Availability

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

See Also

IStringRemap Interface