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


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

ILasDatasetEdit.CalculateFileStatistics Method

Calculate statistics of the specified file.

[Visual Basic .NET]
Public Sub CalculateFileStatistics ( _
    ByVal pTrackCancel As ITrackCancel, _
    ByVal index As Integer _
)
[C#]
public void CalculateFileStatistics (
    ITrackCancel pTrackCancel,
    int index
);
[C++]
HRESULT CalculateFileStatistics(
  ITrackCancel* pTrackCancel,
  long index
);
[C++]
Parameters
pTrackCancel [in]

pTrackCancel is a parameter of type ITrackCancel* index [in]
index is a parameter of type long

Product Availability

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

Description

Computes the statistics for the las file referenced by the specified index.

pTrackCancel is a reference to a Cancel Tracker object that can be used to monitor progress and/or cancel the process. This can be set to a NULL pointer ('Nothing' in VB) if desired.

index is the input index of the LAS file for which statistics need to be computed.

See Also

ILasDatasetEdit Interface