ArcObjects Library Reference (GeoDatabaseExtensions)  

ICadastralFabric.UpdateJob Method

Updates the existing job.

[Visual Basic .NET]
Public Sub UpdateJob ( _
    ByVal Job As ICadastralJob _
)
[C#]
public void UpdateJob (
    ICadastralJob Job
);
[C++]
HRESULT UpdateJob(
  ICadastralJob* Job
);
[C++]

Parameters

Job [in]

  Job is a parameter of type ICadastralJob

Product Availability

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

Errors Returned

FDO_E_CADASTRAL_FABRIC_JOB_ALREADY_COMMITTED: The Cadastral Job has already been updated in the the cadastral fabric dataset.

FDO_E_CADASTRAL_FABRIC_JOB_NOT_FOUND: The Cadastral Job with that name is not in the cadastral fabric dataset.

 

Remarks

Apply updates to an existing Cadastral Job.

The UpdateJob method can be used to apply updates to the properties of an existing cadastral job, such as the name, description, owner and participating parcels. Use the GetJob method to retrieve the cadastral job to be updated. Alter the properties of the CadastralJob object using the members of the interface ICadastralJob and then pass the object as the Job parameter of this method.

[C++]

See Also

ICadastralFabric Interface