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


IDECadastralFabric.DefaultAccuracyCategory Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > GeodatabaseExtensions > ESRI.ArcGIS.GeoDatabaseExtensions > Interfaces > ID > IDECadastralFabric Interface > IDECadastralFabric.DefaultAccuracyCategory Property
ArcGIS Developer Help

IDECadastralFabric.DefaultAccuracyCategory Property

The default accuracy category for the cadastral fabric.

[Visual Basic .NET]
Public Property DefaultAccuracyCategory As Integer
[C#]
public int DefaultAccuracyCategory {get; set;}
[C++]
HRESULT get_DefaultAccuracyCategory(
  System.Int32* defaultAccuracy
);
[C++]
HRESULT put_DefaultAccuracyCategory(
  long defaultAccuracy
);
[C++]
Parameters
defaultAccuracy [out, retval]

defaultAccuracy is a parameter of type long* defaultAccuracy [in]
defaultAccuracy is a parameter of type long

Product Availability

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

Remarks

Get or put the default accuracy category for the cadastral fabric.

The DefaultAccuracy is the default accuracy category used for the cadastral fabric. The default accuracy value is intialized to category 4, by default.

The default accuracy that will be used for cadastral features may be specified on the creation of a cadastral fabric. This value will be applied to new features that do not have an accuracy value explicitly defined. The accuracy values are defined in the cadastral fabric�s accuracy table. The values represent the quality of instruments used at the time the data was collected.

Use the DECadastralFabric object to create a new Cadastral Fabric. To update an existing fabric, pass the updated DECadastralFabric object to the method ICadastralFabricSchemaEdit::UpdateSchema().

[C++]

HRESULT get_DefaultAccuracy(

long* DefaultAccuracy,

);

HRESULT put_DefaultAccuracy(

long DefaultAccuracy,

);

See Also

IDECadastralFabric Interface