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


ICadastralTransformationData.GetData Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > GeodatabaseExtensions > ESRI.ArcGIS.GeoDatabaseExtensions > Interfaces > IC > ICadastralTransformationData Interface > ICadastralTransformationData.GetData Method
ArcGIS Developer Help

ICadastralTransformationData.GetData Method

Retrieve a featureClassName, adjustmentLevel pair.

[Visual Basic .NET]
Public Sub GetData ( _
    ByVal index As Integer, _
    ByRef Name As IName, _
    ByRef adjustmentLevel As Integer _
)
[C#]
public void GetData (
    int index,
    ref IName Name,
    ref int adjustmentLevel
);
[C++]
HRESULT GetData(
  long index,
  IName** Name,
  System.Int32* adjustmentLevel
);
[C++]
Parameters
index [in]

index is a parameter of type long Name [in, out]
Name is a parameter of type IName** adjustmentLevel [in, out]
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 contained an invalid IName** pointer, an invalid long* pointer or the index was outside the range 0 <= index < count.

Remarks

Retrieve a feature class name, target adjustment level data-pair from this object using an index.

The index value must be within the range 0 <= index < count, where count is the number of data pairs stored on this object and can be obtained using the TransDataCount method.

[C++]

HRESULT GetData(

long index,

IName** ppFeatureClassName,

long* ptargetAdjustmentLevel

);

See Also

ICadastralTransformationData Interface