ArcObjects Library Reference (GeoDatabaseExtensions)  

ICadastralTransformationData.AddData Method

Add a featureClassID, adjustmentLevel pair.

[Visual Basic .NET]
Public Sub AddData ( _
    ByVal Name As IName, _
    ByVal adjustmentLevel As Integer _
)
[C#]
public void AddData (
    IName Name,
    int adjustmentLevel
);
[C++]
HRESULT AddData(
  IName* Name,
  long adjustmentLevel
);
[C++]

Parameters

Name [in]

  Name is a parameter of type IName

adjustmentLevel [in]   adjustmentLevel is a parameter of type long

Product Availability

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

Errors Returned

E_INVALIDARG The input parameters did not contain a valid IName pointer or the target adjustment level was < 0.

Remarks

Add a feature class name and its corresponding target adjustment level to this CadastralTransformationData object.

The target adjustment level must be greater than zero. If the feature class specified has already been added to the CadastralTransformationData object, the new target adjustment level replaces the old value.

[C++]

See Also

ICadastralTransformationData Interface