This document is archived and information here might be outdated. Recommended version. |
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
E_INVALIDARG The input parameters did not contain a valid IName pointer or the target adjustment level was < 0.
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.
HRESULT AddData(
IName* pFeatureClassName,
long targetAdjustmentLevel
);