ArcObjects Library Reference (Cadastral)  

ICadastralAdjustmentLevel.Next Method

Retrieve the next feature-class/adjustment-level pair.

[Visual Basic .NET]
Public Sub Next ( _
    ByRef pfeatureClassID As Integer, _
    ByRef padjustmentLevel As Integer _
)
[C#]
public void Next (
    ref int pfeatureClassID,
    ref int padjustmentLevel
);

Product Availability

Available with ArcGIS Desktop.

Errors Returned

E_INVALIDARG An invalid long* pointer was specified in the input parameters.

Remarks

Retrieve the next feature class ID, adjustment level pair.

The Next method will return the next feature class ID, adjustment level pair which has been associated with the Cadastral Fabric specified with the CadastralFabric method. Calling Next after the last pair has been returned will return S_FALSE. The Reset method is used to reset the position of the next pair to be returned to the first pair. If Reset is not called prior to calling Next for the first time, the position is automatically set to the first pair. Calling AddFeatureClass or Delete will also reset the position of the next pair returned to the first pair.

[C++]

See Also

ICadastralAdjustmentLevel Interface