Provides access to members that manage a global ID set.
Members
Name | Description | |
---|---|---|
Add | Add a global ID to the global ID set. | |
AddFeatures | Add global IDs corresponding to an array of oids to a feature class. | |
AddObjects | Add global IDs corresponding to an array of oids to a table. |
IGlobalIDSet.Add Method
Add a global ID to the global ID set.
Public Sub Add ( _
ByVal GlobalID As String _
)
public void Add (
string GlobalID
);
IGlobalIDSet.AddFeatures Method
Add global IDs corresponding to an array of oids to a feature class.
Public Sub AddFeatures ( _
ByVal FeatureClass As IFeatureClass, _
ByVal oids As Int64[] _
)
public void AddFeatures (
IFeatureClass FeatureClass,
Int64[] oids
);
IGlobalIDSet.AddObjects Method
Add global IDs corresponding to an array of oids to a table.
Public Sub AddObjects ( _
ByVal Table As ITable, _
ByVal oids As Int64[] _
)
public void AddObjects (
ITable Table,
Int64[] oids
);
Classes that implement IGlobalIDSet
Classes | Description |
---|---|
GlobalIDSet | Global ID set object. |