IPnt Interface

Provides access to members that control a portable point.

When To Use

The DblPnt object is used by raster objects, including the Raster, RasterBand, and PixelBlock, to specify coordinates or extent information.

Members

Name Description
Method Convert2Point Set Esri's Point Object from Pnt.
Method Set2Point Reset from Esri's Point Object.
Method SetCoords Set X and Y coordinates of the point.
Read/write property X X coordinate of the point.
Read/write property Y Y coordinate of the point.

IPnt.Convert2Point Method

Set Esri's Point Object from Pnt.

Public Sub Convert2Point ( _
    ByVal env As IPoint _
)
public void Convert2Point (
    IPoint env
);

IPnt.Set2Point Method

Reset from Esri's Point Object.

Public Sub Set2Point ( _
    ByVal env As IPoint _
)
public void Set2Point (
    IPoint env
);

IPnt.SetCoords Method

Set X and Y coordinates of the point.

Public Sub SetCoords ( _
    ByVal X As Double, _
    ByVal Y As Double _
)
public void SetCoords (
    double X,
    double Y
);

IPnt.X Property

X coordinate of the point.

Public Property X As Double
public double X {get; set;}

IPnt.Y Property

Y coordinate of the point.

Public Property Y As Double
public double Y {get; set;}

Classes that implement IPnt

Classes Description
DblPnt (esriDataSourcesRaster) A simple point class.
Pnt A 2D point for representing raster dimension and location in pixels.

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