This document is archived and information here might be outdated.  Recommended version.


ILasPointCloud.QueryLasPointInfo Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > GeodatabaseExtensions > ESRI.ArcGIS.GeoDatabaseExtensions > Interfaces > IL > ILasPointCloud Interface > ILasPointCloud.QueryLasPointInfo Method
ArcGIS Developer Help

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