Provides access to members that manage a transform group.
Members
Name | Description | |
---|---|---|
Add | Add feature to group. | |
Delete | Delete feature from group. | |
DeleteAllInClass | Delete all features with ClassID. | |
Next | The next type of feature and how many times it was found. | |
NextSet | The next set of features. | |
Reset | Resets the enumeration sequence to the beginning. |
ITransformGroup.Add Method
Add feature to group.
Public Sub Add ( _
ByVal ClassID As Integer, _
ByVal OID As Long, _
ByVal Feature As IFeature _
)
public void Add (
int ClassID,
long OID,
IFeature Feature
);
ITransformGroup.Delete Method
Delete feature from group.
Public Sub Delete ( _
ByVal ClassID As Integer, _
ByVal OID As Long _
)
public void Delete (
int ClassID,
long OID
);
ITransformGroup.DeleteAllInClass Method
Delete all features with ClassID.
Public Sub DeleteAllInClass ( _
ByVal ClassID As Integer _
)
public void DeleteAllInClass (
int ClassID
);
ITransformGroup.Next Method
The next type of feature and how many times it was found.
Public Sub Next ( _
ByRef ClassID As Integer, _
ByRef OID As Int64&, _
ByRef Count As Integer _
)
public void Next (
ref int ClassID,
ref Int64& OID,
ref int Count
);
ITransformGroup.NextSet Method
The next set of features.
Public Sub NextSet ( _
ByRef ClassID As Integer, _
ByRef featureSet As ISet _
)
public void NextSet (
ref int ClassID,
ref ISet featureSet
);
ITransformGroup.Reset Method
Resets the enumeration sequence to the beginning.
Public Sub Reset ( _
)
public void Reset (
);
Classes that implement ITransformGroup
Classes | Description |
---|---|
TransformGroup | Esri TransformGroup object. |