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


ICadastralImporter.Import Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Cadastral > ESRI.ArcGIS.Cadastral > Interfaces > IC > ICadastralImporter Interface > ICadastralImporter.Import Method
ArcGIS Developer Help

ICadastralImporter.Import Method

Import Feature Class into Cadastral Fabric.

[Visual Basic .NET]
Public Sub Import ( _
    ByVal pSourceClassName As IName, _
    ByVal pTargetCadastralFabricName As ICadastralFabricName, _
    ByVal pTrackCancel As ITrackCancel _
)
[C#]
public void Import (
    IName pSourceClassName,
    ICadastralFabricName pTargetCadastralFabricName,
    ITrackCancel pTrackCancel
);

Product Availability

Available with ArcGIS Desktop.

Remarks

The Import property is used to import features from the source class into the target cadastral fabric. Two name object must be used for the source and target classes, and those name objects must exist (ie, IName:Open must succeed). A TrackCancel can be passed (optional), which can show progress and allow the import be be cancelled.

When importing COGO data, the COGO attributes are used to derive the attributes in the cadastral fabic. If the attributes are illegal or missing, then the attributes are calculated from the shape field. When any calculation occurs, the line accuracy is set to low (0), otherwise its set to medium (4).

[C++]

HRESULT Import(

IName* SourceClassName, ICadastralFabricName* TargetCadastralFabricName, ITrackCancel* TrackCancel

);

See Also

ICadastralImporter Interface