Provides access to members that control a collection of geodata transform.
Members
Name | Description | |
---|---|---|
Add | Adds a geodata transform to the end of the collection. | |
Count | The geodata transform count of the collection. | |
Domains | The domains in output space. | |
Empty | Empties the collection. | |
FirstXform | The first geodata transform in the collection. | |
GeodataXform | The geodata transform at a given index in the collection. | |
Insert | Inserts a geodata transform to the collection at a specified index. | |
IsIdentity | Indicates if this geodata transform is an identity transform. | |
LastXform | The last geodata transform in the collection. | |
Remove | Removes a geodata transform at a given index from the collection. | |
SpatialReference | The output spatial reference after applying this transform. | |
Transform | Transforms a set of points in a given direction. | |
TransformCellsize | Transforms a cellsize in a given direction. | |
TransformExtent | Transforms an extent in a given direction. | |
TransformPoints | Transforms a point collection in a given direction | |
Validate | Validates the collection after changes. |
ICompositeXform.Add Method
Adds a geodata transform to the end of the collection.
Public Sub Add ( _
ByVal pXform As IGeodataXform _
)
public void Add (
IGeodataXform pXform
);
ICompositeXform.Count Property
The geodata transform count of the collection.
Public ReadOnly Property Count As Integer
public int Count {get;}
ICompositeXform.Empty Method
Empties the collection.
Public Sub Empty ( _
)
public void Empty (
);
ICompositeXform.FirstXform Property
The first geodata transform in the collection.
Public ReadOnly Property FirstXform As IGeodataXform
public IGeodataXform FirstXform {get;}
ICompositeXform.GeodataXform Property
The geodata transform at a given index in the collection.
Public Function get_GeodataXform ( _
ByVal Index As Integer _
) As IGeodataXform
public IGeodataXform get_GeodataXform (
int Index
);
ICompositeXform.Insert Method
Inserts a geodata transform to the collection at a specified index.
Public Sub Insert ( _
ByVal Index As Integer, _
ByVal pXform As IGeodataXform _
)
public void Insert (
int Index,
IGeodataXform pXform
);
ICompositeXform.LastXform Property
The last geodata transform in the collection.
Public ReadOnly Property LastXform As IGeodataXform
public IGeodataXform LastXform {get;}
ICompositeXform.Remove Method
Removes a geodata transform at a given index from the collection.
Public Sub Remove ( _
ByVal Index As Integer _
)
public void Remove (
int Index
);
ICompositeXform.Validate Method
Validates the collection after changes.
Public Sub Validate ( _
)
public void Validate (
);
Inherited Interfaces
Interfaces | Description |
---|---|
IGeodataXform | Provides access to members that control geodata transformation. |
Classes that implement ICompositeXform
Classes | Description |
---|---|
CompositeXform | A composite geodata transform collection class. |
Remarks
ICompositeXform is used to create a CompositeXfrom object, which holds and manages the colleciton of geodata transformation objects. For example add, remove, or get a geodata transformation object.