DK for ActiveX | TatukGIS_XDK11.ITGIS_ArcGISFeatureServerLayer.GetObjects_2 | Methods | Properties
Gets layer objects for the specified object id list.
// C# public _stream GetObjects_2( WideString _objectIds, ITGIS_Extent _filterRect );
' VisualBasic Public Function GetObjects_2( ByVal _objectIds As WideString, ByVal _filterRect As ITGIS_Extent ) As _stream
// Oxygene public function GetObjects_2( _objectIds : WideString; _filterRect : ITGIS_Extent ) : _stream;
| Name | Type | Description |
|---|---|---|
| _objectIds | WideString | Comma-separated list of object ids to retrieve. |
| _filterRect | ITGIS_Extent | Optional extent rectangle used to limit returned objects. |
| Type | Description |
|---|---|
| _stream | Stream containing the retrieved object data. |
PURPOSE: Requests feature data for specific object ids from the layer.
BEHAVIOR: The request targets only the object ids listed in_objectIds. If_filterRect is provided, it is used as an additional extent filter. The server response is returned as a stream.
USAGE: Use this overload when object ids are already known and only selected features should be downloaded.
data = layer.GetObjects("10,11,12", filterRect)