Provides access to members that control a geometric transform.
Members
Name | Description | |
---|---|---|
Domains | The domains in output space. | |
Domains | The domains in output space. | |
IsIdentity | Indicates if this geodata transform is an identity transform. | |
SpatialReference | The output spatial reference after applying this transform. | |
Transform | Transforms a set of points in a given direction. | |
Transformation | The geometric transformation to be applied. | |
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 |
IGeometricXform.Domains Property
The domains in output space.
Public WriteOnly Property Domains_2
public void Domains_2 {set;}
IGeometricXform.Domains Property
The domains in output space.
Public WriteOnly Property Domains_2
public void Domains_2 {set;}
IGeometricXform.Transformation Property
The geometric transformation to be applied.
Public Property Transformation As ITransformation
public ITransformation Transformation {get; set;}
Inherited Interfaces
Interfaces | Description |
---|---|
IGeodataXform | Provides access to members that control geodata transformation. |
Classes that implement IGeometricXform
Classes | Description |
---|---|
GeometricXform | A geometric transform class. |
Remarks
The IGeometricXform is used to create a GeometricXform object.
'Create a geometric xformDim pGeomatricXform As IGeometricXformSet pGeomatricXform = New GeometricXform'create an affine transformationDim pAffineTran As IAffineTransformation2DSet pAffineTran = New AffineTransformation2DpAffineTran.Rotate 3.14 / 4'set with the defined affine transformationSet pGeomatricXform.Transformation = pAffineTran