Provides access to members that control the collection of feature ids, and to combine feature id collections.
Members
Name | Description | |
---|---|---|
Difference | Returns the feature IDs that are not in the collection, but are present in the input collection. | |
Intersect | Combines the feature IDs that are common to both collections into a single collection. | |
SymmetricDifference | Combines the feature IDs that are in one of the collections, but not both collections, into a single collection. | |
Union | Combines all the feature IDs that are in one or the other collection into a single collection. |
IFIDSetOperator.Difference Method
Returns the feature IDs that are not in the collection, but are present in the input collection.
Public Function Difference ( _
ByVal otherFIDSet As IFIDSet _
) As IFIDSet
public IFIDSet Difference (
IFIDSet otherFIDSet
);
IFIDSetOperator.Intersect Method
Combines the feature IDs that are common to both collections into a single collection.
Public Function Intersect ( _
ByVal otherFIDSet As IFIDSet _
) As IFIDSet
public IFIDSet Intersect (
IFIDSet otherFIDSet
);
IFIDSetOperator.SymmetricDifference Method
Combines the feature IDs that are in one of the collections, but not both collections, into a single collection.
Public Function SymmetricDifference ( _
ByVal otherFIDSet As IFIDSet _
) As IFIDSet
public IFIDSet SymmetricDifference (
IFIDSet otherFIDSet
);
IFIDSetOperator.Union Method
Combines all the feature IDs that are in one or the other collection into a single collection.
Public Function Union ( _
ByVal otherFIDSet As IFIDSet _
) As IFIDSet
public IFIDSet Union (
IFIDSet otherFIDSet
);
Classes that implement IFIDSetOperator
Classes | Description |
---|---|
FIDSet | Esri FID Set object. |
RecordNumberSet | A collection of record numbers. Record number sets are used in selections with file based data. |