ArcObjects Library Reference (GeoDatabaseExtensions)  

ICadastralJob.EditParcels Property

Edit parcels for the cadastral job.

[Visual Basic .NET]
Public Property EditParcels As IFIDSet
[C#]
public IFIDSet EditParcels {get; set;}
[C++]
HRESULT get_EditParcels(
  IFIDSet** EditParcelIDs
);
[C++]
HRESULT put_EditParcels(
  IFIDSet* EditParcelIDs
);
[C++]

Parameters

EditParcelIDs [out, retval]

  EditParcelIDs is a parameter of type IFIDSet

EditParcelIDs [in]

  EditParcelIDs is a parameter of type IFIDSet

Product Availability

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

Remarks

The edit parcels for the cadastral job.

The EditParcels property can be used to retrieve or set which parcels will participate as edit parcels in the cadastral job. The FIDSet parameter contains the objectIDs of the edit parcel features in the job. Any existing edit 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 AddEditParcel method on this interface. Use the UpdateJob method to update the cadastral job with any changes.

The parcels in a cadastral job that are marked as edit parcels for a job may not participate as edit parcels in any other job (they may, however, participate as standard job parcels) until the job is committed to the cadastral fabric.

The id's for the edit parcels are added to the JobObjects table. When the job is committed to the cadastral fabric, these rows are removed from the JobObjects table.

[C++]

See Also

ICadastralJob Interface