ArcObjects Library Reference (GeoDatabaseExtensions)  

ICadastralFabric.CreateJob Method

Creates a new cadastral job with the properties of the given CadastralJob object.

[Visual Basic .NET]
Public Function CreateJob ( _
    ByVal Job As ICadastralJob _
) As Integer
[C#]
public int CreateJob (
    ICadastralJob Job
);
[C++]
HRESULT CreateJob(
  ICadastralJob* Job,
  long* JobID
);
[C++]

Parameters

Job [in]

  Job is a parameter of type ICadastralJob

JobID [out, retval]   JobID is a parameter of type long

Product Availability

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

Errors Returned

FDO_E_CADASTRAL_FABRIC_JOB_INVALID_STATUS -> the job must be active.

FDO_E_CADASTRAL_FABRIC_JOB_ALREADY_EXISTS -> a job with the same name already exists in the cadastral fabric dataset

Remarks

Creates a new Cadastral Job with the properties of the given CadastralJob object.

The CreateJob method can be used to create a new cadastral job with the properties of the given CadastralJob object such as the name, description, owner and participating parcels. The job name must be unique.

[C++]

See Also

ICadastralFabric Interface