This document is archived and information here might be outdated. Recommended version. |
ArcObjects Help for .NET developers > ArcObjects namespaces > DataSourcesRaster > ESRI.ArcGIS.DataSourcesRaster > Interfaces > IR > IRaster2 Interface > IRaster2.PixelToMap Method (ArcObjects .NET 10.5 SDK) |
Converts a location (column, row) in pixel space into map space.
[Visual Basic .NET] Public Sub PixelToMap ( _ ByVal iColumn As Integer, _ ByVal iRow As Integer, _ ByRef pX As Double, _ ByRef pY As Double _ )
[C#] public void PixelToMap ( int iColumn, int iRow, ref double pX, ref double pY );
[C++]
HRESULT PixelToMap(
long iColumn,
long iRow,
double* pX,
double* pY
);
[C++]
Parameters iColumn [in] iColumn is a parameter of type long iRow [in] iRow is a parameter of type long pX [out] pX is a parameter of type double pY [out] pY is a parameter of type double