IStandaloneTableInfo Interface

Provides access to StandaloneTableInfo.

Members

Name Description
Read-only property Description The description of the Stand Alone table. This property is set in the General tab of the Properties dialog.
Read-only property DisplayField Primary display field.
Read-only property Fields Array of attribute fields contained in the table.
Read-only property HasAttachments Indicates if the layer has attachments.
Read-only property HasSubtype Indicates if the layer has Subtype.
Read-only property HTMLPopupType Indicates if the layer has HTML popups enabled.
Read-only property 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.
Read-only property Name Descriptive name of the table.
Read-only property OIDFieldName The name of the OID Field.
Read-only property RelateInfos Array of relates associated to the table.

IStandaloneTableInfo.Description Property

The description of the Stand Alone table. This property is set in the General tab of the Properties dialog.

Public ReadOnly Property Description As String
public string Description {get;}

Inherited Interfaces

Interfaces Description
IMapTableInfo Provides access to the Table Info.

Classes that implement IStandaloneTableInfo

Classes Description
StandaloneTableInfo The coclass contains information for standalone table in a map.
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");

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.