ArcObjects Library Reference (GeoDatabaseExtensions)  

ICadastralJob.ControlPoints Property

The control points for the cadastral job.

[Visual Basic .NET]
Public Property ControlPoints As IFIDSet
[C#]
public IFIDSet ControlPoints {get; set;}
[C++]
HRESULT get_ControlPoints(
  IFIDSet** ControlPointslIDs
);
[C++]
HRESULT put_ControlPoints(
  IFIDSet* ControlPointslIDs
);
[C++]

Parameters

ControlPointslIDs [out, retval]

  ControlPointslIDs is a parameter of type IFIDSet

ControlPointslIDs [in]

  ControlPointslIDs is a parameter of type IFIDSet

Product Availability

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

Remarks

The control points for the cadastral job.

The ControlPoints property can be used to retrieve or set which control points will participate in the cadastral job. The FIDSet parameter contains the objectIDs of the control point features in the job.

Any existing control points in the job will be replaced by the FIDSet set by this property. To individually add a control point to the existing set, use the AddControl method on this interface. Use the UpdateJob method to update the cadastral job with any changes.

[C++]

See Also

ICadastralJob Interface