Provides access to members that control a set of geographic and vertical transformation operators.
Members
| Name | Description | |
|---|---|---|
![]() |
AddTo | Adds content of this set to the pDst. |
![]() |
Count | The number of geographic transformations in the set. |
![]() |
Find | Check a geographic transformation and a direction to see if it exists in the set. |
![]() |
FindHVTransform | Check a transformation and a direction to see if it exists in the set. |
![]() |
Get | Returns a default geographic transformation. |
![]() |
GetHVTransform | Finds a transformation. |
![]() |
HVCount | The number of HV transformations in the set. |
![]() |
Next | Retrieves the next geographic transformation in the set. |
![]() |
NextHVTransform | Retrieves the next transformation in the set. |
![]() |
Remove | Deletes a particular geographic transformation. |
![]() |
RemoveAll | Deletes all transformations in the set. |
![]() |
RemoveByKey | Deletes a particular geographic transformation by its from and to GCS. |
![]() |
RemoveHVTransform | Deletes a particular geographic or HV transformation. |
![]() |
RemoveHVTransformByKey | Deletes a particular transformation by its from and to GCS. |
![]() |
Reset | Reinitializes the transformation set iterator. |
![]() |
Set | Sets a default geographic transformation. |
![]() |
SetHVTransform | Adds an HV transformation. |
IGeoTransformationOperationSet2.AddTo Method
Adds content of this set to the pDst.
Public Sub AddTo ( _
    ByVal pDst As IGeoTransformationOperationSet2 _
)
public void AddTo (
    IGeoTransformationOperationSet2 pDst
);
IGeoTransformationOperationSet2.FindHVTransform Method
Check a transformation and a direction to see if it exists in the set.
Public Function FindHVTransform ( _
    ByVal Direction As esriTransformDirection, _
    ByVal GT As ITransformation _
) As Boolean
public bool FindHVTransform (
    esriTransformDirection Direction,
    ITransformation GT
);
IGeoTransformationOperationSet2.GetHVTransform Method
Finds a transformation.
Public Sub GetHVTransform ( _
    ByVal pFromGCS As IGeographicCoordinateSystem, _
    ByVal pToGCS As IGeographicCoordinateSystem, _
    ByRef Direction As esriTransformDirection, _
    ByRef Transformation As IHVCompositeDatumTransformation _
)
public void GetHVTransform (
    IGeographicCoordinateSystem pFromGCS,
    IGeographicCoordinateSystem pToGCS,
    ref esriTransformDirection Direction,
    ref IHVCompositeDatumTransformation Transformation
);
IGeoTransformationOperationSet2.HVCount Property
The number of HV transformations in the set.
Public ReadOnly Property HVCount As Integer
public int HVCount {get;}
IGeoTransformationOperationSet2.NextHVTransform Method
Retrieves the next transformation in the set.
Public Sub NextHVTransform ( _
    ByRef Direction As esriTransformDirection, _
    ByRef GT As IHVCompositeDatumTransformation _
)
public void NextHVTransform (
    ref esriTransformDirection Direction,
    ref IHVCompositeDatumTransformation GT
);
IGeoTransformationOperationSet2.RemoveHVTransform Method
Deletes a particular geographic or HV transformation.
Public Sub RemoveHVTransform ( _
    ByVal Direction As esriTransformDirection, _
    ByVal Transformation As ITransformation _
)
public void RemoveHVTransform (
    esriTransformDirection Direction,
    ITransformation Transformation
);
IGeoTransformationOperationSet2.RemoveHVTransformByKey Method
Deletes a particular transformation by its from and to GCS.
Public Sub RemoveHVTransformByKey ( _
    ByVal pFromGCS As IGeographicCoordinateSystem, _
    ByVal pToGCS As IGeographicCoordinateSystem _
)
public void RemoveHVTransformByKey (
    IGeographicCoordinateSystem pFromGCS,
    IGeographicCoordinateSystem pToGCS
);
IGeoTransformationOperationSet2.SetHVTransform Method
Adds an HV transformation.
Public Sub SetHVTransform ( _
    ByVal Direction As esriTransformDirection, _
    ByVal Transformation As IHVCompositeDatumTransformation _
)
public void SetHVTransform (
    esriTransformDirection Direction,
    IHVCompositeDatumTransformation Transformation
);
Inherited Interfaces
| Interfaces | Description |
|---|---|
| IGeoTransformationOperationSet | Provides access to members that control a set of geographic transformation operators (GT + direction). |
Classes that implement IGeoTransformationOperationSet2
| Classes | Description |
|---|---|
| GeoTransformationOperationSet | Stores a set of geographic transformation operators (GT + direction). |

