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


ISelectionSet.AddList Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geodatabase > ESRI.ArcGIS.GeoDatabase > Interfaces > IS > ISelectionSet Interface > ISelectionSet.AddList Method
ArcGIS Developer Help

ISelectionSet.AddList Method

Adds a list of object id's to the selection set.

[Visual Basic .NET]
Public Sub AddList ( _
    ByVal Count As Integer, _
    ByRef OIDList As Integer _
)
[C#]
public void AddList (
    int Count,
    ref int OIDList
);
[C++]
HRESULT AddList(
  long Count,
  System.Int32* OIDList
);
[C++]
Parameters
Count [in]

Count is a parameter of type long OIDList [in]
OIDList is a parameter of type long*

Product Availability

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

Remarks

This method should not be called by .NET or Java applications. Instead, call IGeoDatabaseBridge2.AddList.

[C#]

This method should not be used in .NET. Instead, use IGeoDatabaseBridge2.AddList.

[Visual Basic .NET]

This method should not be used in .NET. Instead, use IGeoDatabaseBridge2.AddList.

See Also

ISelectionSet Interface