Provides access to StandaloneTableInfo.
Product Availability
Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.
Members
Description | ||
---|---|---|
Description | The description of the Stand Alone table. This property is set in the General tab of the Properties dialog. | |
DisplayField | Primary display field. | |
Fields | Array of attribute fields contained in the table. | |
HasAttachments | Indicates if the layer has attachments. | |
HasSubtype | Indicates if the layer has Subtype. | |
HTMLPopupType | Indicates if the layer has HTML popups enabled. | |
ID | The table ID. This is a unique ID among layers and tables, and is used to identify the table in a number of methods. | |
Name | Descriptive name of the table. | |
OIDFieldName | The name of the OID Field. | |
RelateInfos | Array of relates associated to the table. |
Inherited Interfaces
Interfaces | Description |
---|---|
IMapTableInfo | Provides access to the Table Info. |
CoClasses that implement IStandaloneTableInfo
CoClasses and Classes | Description |
---|---|
StandaloneTableInfo | The coclass contains information for standalone table in a map. |
[C#]
Example: getting a list of all available standalone table in the MapService
IStandaloneTableInfos pSTIs = pMapServerInfo.StandaloneTableInfos;
for (int i = 0; i < pSTIs.Count; i++)
Console.WriteLine("Table Name:" + pSTIs.get_Element(i).Name + ", Table Id:" + pSTIs.get_Element(i).ID + "\n");