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


ICadastralFabric.CreateJob Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > GeodatabaseExtensions > ESRI.ArcGIS.GeoDatabaseExtensions > Interfaces > IC > ICadastralFabric Interface > ICadastralFabric.CreateJob Method
ArcGIS Developer Help

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
);
[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_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++]

HRESULT CreateJob(

ICadastralJob* Job,

long* JobID

);

See Also

ICadastralFabric Interface