ArcObjects Library Reference (GeoAnalyst)  

INumberRemap.LoadNumbersFromTable Method

Load number remap records from a table object.

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

Optional Values

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

Parameters

remapTable [in]

  remapTable is a parameter of type ITable

OutFieldName [in]   OutFieldName is a parameter of type BSTR fromFieldName [in]   fromFieldName is a parameter of type BSTR toFieldName [optional]   toFieldName 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.

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

INumberRemap Interface