ArcObjects Library Reference (SpatialAnalyst)  

IGPSANumberRemap.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. Requires Spatial Analyst Extension.

See Also

IGPSANumberRemap Interface