ITransformGroup Interface

Provides access to members that manage a transform group.

Members

Name Description
Method Add Add feature to group.
Method Delete Delete feature from group.
Method DeleteAllInClass Delete all features with ClassID.
Method Next The next type of feature and how many times it was found.
Method NextSet The next set of features.
Method 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.

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.