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


ICadastralJob.ControlPoints 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.ControlPoints Property
ArcGIS Developer Help

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

HRESULT get_ControlPoints(

IFIDSet** FIDSet,

);

HRESULT put_ControlPoints(

IFIDSet* FIDSet,

);

See Also

ICadastralJob Interface