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


ICadastralJob.AdjustmentAreaParcels Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > GeodatabaseExtensions > ESRI.ArcGIS.GeoDatabaseExtensions > Interfaces > IC > ICadastralJob Interface > ICadastralJob.AdjustmentAreaParcels Property
ArcGIS Developer Help

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++]

HRESULT get_AdjustmentAreaParcels(

IFIDSet** FIDSet,

);

HRESULT put_AdjustmentAreaParcels(

IFIDSet* FIDSet,

);

See Also

ICadastralJob Interface