ArcObjects Library Reference (GeoDatabaseExtensions)  

ILasPointCloud.QueryLasPointInfo Method

Query point information associated with the 1-based point ID.

[Visual Basic .NET]
Public Sub QueryLasPointInfo ( _
    ByVal FileIndex As Integer, _
    ByVal PointID As Double, _
    ByVal pInfo As ILasPointInfo _
)
[C#]
public void QueryLasPointInfo (
    int FileIndex,
    double PointID,
    ILasPointInfo pInfo
);
[C++]
HRESULT QueryLasPointInfo(
  long FileIndex,
  double PointID,
  ILasPointInfo* pInfo
);
[C++]

Parameters

FileIndex [in]   FileIndex is a parameter of type long PointID [in]   PointID is a parameter of type double pInfo [in]

  pInfo is a parameter of type ILasPointInfo

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Description

Queries the point information for the specified point in a specified file.

FileIndex is the input file index (0-based).

PointID is the input point id (1-based).

pInfo is ILasPointInfo object representing the point information. This object needs to be pre-initialized.

See Also

ILasPointCloud Interface