ArcObjects Library Reference (GeoDatabaseExtensions)  

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,
  long* 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++]

See Also

ICadastralTransformationData Interface