Packagecom.esri.ags.layers.supportClasses
Classpublic class TableInfo
InheritanceTableInfo Inheritance flash.events.EventDispatcher

Since : ArcGIS API for Flex 2.0

Contains basic information about one table in a map service. This is the same layer information available in the MapService page of the service directory. Use getDetails() to get more information about a specific table or getAllDetails() for all layers and tables in the service, either method will return the more detailed TableDetails.

See also

com.esri.ags.layers.ArcGISDynamicMapServiceLayer.tableInfos
com.esri.ags.layers.ArcGISTiledMapServiceLayer.tableInfos
com.esri.ags.layers.ArcGISDynamicMapServiceLayer.getDetails()
com.esri.ags.layers.ArcGISTiledMapServiceLayer.getDetails()
com.esri.ags.layers.ArcGISDynamicMapServiceLayer.getAllDetails()
com.esri.ags.layers.ArcGISTiledMapServiceLayer.getAllDetails()
TableDetails


Public Properties
 PropertyDefined By
  id : Number
Table ID assigned by ArcGIS Server for a table.
TableInfo
  name : String
Table name as defined in the map service.
TableInfo
Property Detail
idproperty
id:Number

Table ID assigned by ArcGIS Server for a table. The topmost layer is 0, and each layer follows sequentially. If a layer is added or removed from the source map document, the ID values will shift accordingly.

This property can be used as the source for data binding.


Implementation
    public function get id():Number
    public function set id(value:Number):void
nameproperty 
name:String

Table name as defined in the map service.

This property can be used as the source for data binding.


Implementation
    public function get name():String
    public function set name(value:String):void