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


IDECadastralFabric.ConfigurationKeyword 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.ConfigurationKeyword Property
ArcGIS Developer Help

IDECadastralFabric.ConfigurationKeyword Property

The database configuration keyword for the cadastral fabric.

[Visual Basic .NET]
Public Property ConfigurationKeyword As String
[C#]
public string ConfigurationKeyword {get; set;}
[C++]
HRESULT get_ConfigurationKeyword(
  System.String* configKeyword
);
[C++]
HRESULT put_ConfigurationKeyword(
  BSTR configKeyword
);
[C++]
Parameters
configKeyword [out, retval]

configKeyword is a parameter of type BSTR* configKeyword [in]
configKeyword is a parameter of type BSTR

Product Availability

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

Remarks

Get or put the database configuration keyword for the cadastral fabric.

The optional configurationKeyword parameter allows the application to control the physical layout for this table in the underlying RDBMS�for example, in the case of an Oracle database, the configuration keyword controls the tablespace in which the table is created, the initial and next extents, and other properties. The configurationKeywords for an ArcSDE instance are set up by the ArcSDE data administrator, the list of available keywords supported by a workspace may be obtained using the IWorkspaceConfiguration interface. For more information on configuration keywords, refer to the ArcSDE documentation.

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_ConfigKeyword(

BSTR* ConfigKeyword,

);

HRESULT put_ConfigKeyword(

BSTR ConfigKeyword,

);

See Also

IDECadastralFabric Interface