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


ICadastralAdjustmentLevel.GetAdjustedLevel Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Cadastral > ESRI.ArcGIS.Cadastral > Interfaces > IC > ICadastralAdjustmentLevel Interface > ICadastralAdjustmentLevel.GetAdjustedLevel Method
ArcGIS Developer Help

ICadastralAdjustmentLevel.GetAdjustedLevel Method

Retrieve the stored adjustment level for a given feature class.

[Visual Basic .NET]
Public Sub GetAdjustedLevel ( _
    ByVal featureClassID As Integer, _
    ByRef padjustedLevel As Integer, _
    ByRef pcadastralFabricID As Integer _
)
[C#]
public void GetAdjustedLevel (
    int featureClassID,
    ref int padjustedLevel,
    ref int pcadastralFabricID
);

Product Availability

Available with ArcGIS Desktop.

Errors Returned

E_INVALIDARG The input parameters contained a negative feature class ID or an invalid long* pointer.

Remarks

Retrieve the adjusted level associated with a given Feature Class ID.

If the CadastralFabric property has not yet been set, no data are returned. If the feature class is not found, S_FALSE is returned. The feature class ID must not be negative.

[C++]

HRESULT GetAdjustedLevel(

long featureClassId,

long* padjustedLevel,

long* pCadastralFabricID

);

See Also

ICadastralAdjustmentLevel Interface