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 | |
---|---|---|
Convert2Point | Set Esri's Point Object from Pnt. | |
Set2Point | Reset from Esri's Point Object. | |
SetCoords | Set X and Y coordinates of the point. | |
X | X coordinate of the point. | |
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. |