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


ISelectionSet.RemoveList 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.RemoveList Method
ArcGIS Developer Help

ISelectionSet.RemoveList Method

Removes a list of object id's from the selection set.

[Visual Basic .NET]
Public Sub RemoveList ( _
    ByVal Count As Integer, _
    ByRef OIDList As Integer _
)
[C#]
public void RemoveList (
    int Count,
    ref int OIDList
);
[C++]
HRESULT RemoveList(
  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.

Description

Removes a list of OID's from a selection set.
The Count parameter represents the number of elements to remove and the OIDList is a pointer to an array of feature IDs.

Remarks

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

See Also

ISelectionSet Interface