Provides access to members of LasDataset.
Members
| Name | Description | |
|---|---|---|
![]() |
AddFile | Adds a file to the dataset. |
![]() |
AddFileExt | Adds a file to the dataset. |
![]() |
AddFiles | Adds an array of files to the dataset. |
![]() |
AddFolder | Adds all the files in the specified a folder, and potentially subfolders, to the dataset. |
![]() |
AddFolderExt | Adds all the files in the specified a folder, and potentially subfolders, to the dataset. |
![]() |
AddSurfaceConstraint | Adds surface constraint (e.g., breaklines) to the dataset. |
![]() |
CalculateFileStatistics | Calculate statistics of the specified file. |
![]() |
CalculateStatistics | Calculate statistics of the entire dataset. |
![]() |
RemoveFile | Removes the specified file from the dataset. |
![]() |
RemoveFileByName | Removes the specified file from the dataset. |
![]() |
RemoveSurfaceConstraint | Removes the specified surface constraint from the dataset. |
![]() |
RemoveSurfaceConstraintByID | Removes the specified surface constraint from the dataset. |
![]() |
Save | Saves the changes. |
![]() |
SetSpatialReference | Sets spatial reference. |
![]() |
UsesRelativePath | Indicates if the dataset is saved with relative path. |
ILasDatasetEdit2.AddFileExt Method
Adds a file to the dataset.
Public Sub AddFileExt ( _
ByVal fileName As String, _
ByVal pAOI As IGeometry, _
ByVal bWithinOnly As Boolean _
)
public void AddFileExt (
string fileName,
IGeometry pAOI,
bool bWithinOnly
);
ILasDatasetEdit2.AddFiles Method
Adds an array of files to the dataset.
Public Sub AddFiles ( _
ByVal pFiles As IStringArray, _
ByVal pAOI As IGeometry, _
ByVal bWithinOnly As Boolean, _
ByRef ppBadFiles As IStringArray _
)
public void AddFiles (
IStringArray pFiles,
IGeometry pAOI,
bool bWithinOnly,
ref IStringArray ppBadFiles
);
ILasDatasetEdit2.AddFolderExt Method
Adds all the files in the specified a folder, and potentially subfolders, to the dataset.
Public Sub AddFolderExt ( _
ByVal folderName As String, _
ByVal fileExtension As String, _
ByVal bRecursive As Boolean, _
ByVal pAOI As IGeometry, _
ByVal bWithinOnly As Boolean, _
ByRef ppBadFiles As IStringArray _
)
public void AddFolderExt (
string folderName,
string fileExtension,
bool bRecursive,
IGeometry pAOI,
bool bWithinOnly,
ref IStringArray ppBadFiles
);
Inherited Interfaces
| Interfaces | Description |
|---|---|
| ILasDatasetEdit | Provides access to members of LasDataset. |
Classes that implement ILasDatasetEdit2
| Classes | Description |
|---|---|
| LasDataset | Esri LasDataset component. |

