ArcObjects Library Reference (GeoDatabaseExtensions)  

ICadastralJob.AdjustmentAreaParcels Property

All parcels for the complete area of the job.

[Visual Basic .NET]
Public Property AdjustmentAreaParcels As IFIDSet
[C#]
public IFIDSet AdjustmentAreaParcels {get; set;}
[C++]
HRESULT get_AdjustmentAreaParcels(
  IFIDSet** AdjustmentAreaParcelIDs
);
[C++]
HRESULT put_AdjustmentAreaParcels(
  IFIDSet* AdjustmentAreaParcelIDs
);
[C++]

Parameters

AdjustmentAreaParcelIDs [out, retval]

  AdjustmentAreaParcelIDs is a parameter of type IFIDSet

AdjustmentAreaParcelIDs [in]

  AdjustmentAreaParcelIDs is a parameter of type IFIDSet

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Remarks

The AdjustmentAreaParcels property can be used to retrieve or set which parcels will participate as area of adjustment parcels in the cadastral job. The FIDSet parameter contains the objectIDs of the adjustment area parcel features in the job.

Any existing adjustment area parcels in the job will be replaced by the FIDSet set by this property. To individually add a parcel to the existing set, use the AddAdjustmentParcel method on this interface. Use the UpdateJob method to update the cadastral job with any changes.

The attributes of parcels participating as area of adjustment parcels cannot be edited. Only the geometry may be edited indirectly via an adjustment in the cadastral editor.

[C++]

See Also

ICadastralJob Interface