Provides access to members of LasDataset.
Members
| Name | Description | |
|---|---|---|
![]() |
AddFile | Adds a file to the dataset. |
![]() |
AddFolder | 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. |
ILasDatasetEdit.AddFile Method
Adds a file to the dataset.
Public Sub AddFile ( _
    ByVal fileName As String _
)
public void AddFile (
    string fileName
);
ILasDatasetEdit.AddFolder Method
Adds all the files in the specified a folder, and potentially subfolders, to the dataset.
Public Sub AddFolder ( _
    ByVal folderName As String, _
    ByVal fileExtension As String, _
    ByVal bRecursive As Boolean, _
    ByRef ppBadFiles As IStringArray _
)
public void AddFolder (
    string folderName,
    string fileExtension,
    bool bRecursive,
    ref IStringArray ppBadFiles
);
ILasDatasetEdit.AddSurfaceConstraint Method
Adds surface constraint (e.g., breaklines) to the dataset.
Public Sub AddSurfaceConstraint ( _
    ByVal pFeatureClass As IFeatureClass, _
    ByVal pHeightField As IField, _
    ByVal pTagField As IField, _
    ByVal Type As esriTinSurfaceType _
)
public void AddSurfaceConstraint (
    IFeatureClass pFeatureClass,
    IField pHeightField,
    IField pTagField,
    esriTinSurfaceType Type
);
ILasDatasetEdit.CalculateFileStatistics Method
Calculate statistics of the specified file.
Public Sub CalculateFileStatistics ( _
    ByVal pTrackCancel As ITrackCancel, _
    ByVal Index As Integer _
)
public void CalculateFileStatistics (
    ITrackCancel pTrackCancel,
    int Index
);
ILasDatasetEdit.CalculateStatistics Method
Calculate statistics of the entire dataset.
Public Sub CalculateStatistics ( _
    ByVal pTrackCancel As ITrackCancel, _
    ByVal bForce As Boolean, _
    ByRef ppBadFiles As ILongArray _
)
public void CalculateStatistics (
    ITrackCancel pTrackCancel,
    bool bForce,
    ref ILongArray ppBadFiles
);
ILasDatasetEdit.RemoveFile Method
Removes the specified file from the dataset.
Public Sub RemoveFile ( _
    ByVal Index As Integer _
)
public void RemoveFile (
    int Index
);
ILasDatasetEdit.RemoveFileByName Method
Removes the specified file from the dataset.
Public Sub RemoveFileByName ( _
    ByVal fileName As String _
)
public void RemoveFileByName (
    string fileName
);
ILasDatasetEdit.RemoveSurfaceConstraint Method
Removes the specified surface constraint from the dataset.
Public Sub RemoveSurfaceConstraint ( _
    ByVal pFeatureClass As IFeatureClass _
)
public void RemoveSurfaceConstraint (
    IFeatureClass pFeatureClass
);
ILasDatasetEdit.RemoveSurfaceConstraintByID Method
Removes the specified surface constraint from the dataset.
Public Sub RemoveSurfaceConstraintByID ( _
    ByVal pGuid As UID _
)
public void RemoveSurfaceConstraintByID (
    UID pGuid
);
ILasDatasetEdit.Save Method
Saves the changes.
Public Sub Save ( _
)
public void Save (
);
ILasDatasetEdit.SetSpatialReference Method
Sets spatial reference.
Public Sub SetSpatialReference ( _
    ByVal pSpatialReference As ISpatialReference _
)
public void SetSpatialReference (
    ISpatialReference pSpatialReference
);
ILasDatasetEdit.UsesRelativePath Property
Indicates if the dataset is saved with relative path.
Public WriteOnly Property UsesRelativePath
public void UsesRelativePath {set;}
Classes that implement ILasDatasetEdit
| Classes | Description |
|---|---|
| LasDataset | Esri LasDataset component. |

