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


IClassSchemaEdit.AlterAliasName Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geodatabase > ESRI.ArcGIS.GeoDatabase > Interfaces > IC > IClassSchemaEdit Interface > IClassSchemaEdit.AlterAliasName Method
ArcGIS Developer Help

IClassSchemaEdit.AlterAliasName Method

The alias name of the object class.

[Visual Basic .NET]
Public Sub AlterAliasName ( _
    ByVal Name As String _
)
[C#]
public void AlterAliasName (
    string Name
);
[C++]
HRESULT AlterAliasName(
  BSTR Name
);
[C++]
Parameters
Name [in]

Name is a parameter of type BSTR

Product Availability

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

Description

Alters the alias name for the object class.

Remarks

Object classes in a Geodatabase can have between one and three names. The name of the object class, which is the same as the name of the table in the DBMS in which the objects in the object class are stored, the alias name which the user can set for display purposes in end user applications. The third name is the model name which is a tool for developers of custom objects to use to guarantee the names of objects independent of the true name or alias name.

The AlterAliasName method sets the alias name for the object class. The alias name can be returned using the IObjectClass interface.

See Also

IClassSchemaEdit Interface | IModelInfo Interface | IObjectClass Interface