Skip to content

ILasDatasetEdit Interface

Provides access to members of LasDataset.

Members

Name Description
Method AddFile Adds a file to the dataset.
Method AddFolder Adds all the files in the specified a folder, and potentially subfolders, to the dataset.
Method AddSurfaceConstraint Adds surface constraint (e.g., breaklines) to the dataset.
Method CalculateFileStatistics Calculate statistics of the specified file.
Method CalculateStatistics Calculate statistics of the entire dataset.
Method RemoveFile Removes the specified file from the dataset.
Method RemoveFileByName Removes the specified file from the dataset.
Method RemoveSurfaceConstraint Removes the specified surface constraint from the dataset.
Method RemoveSurfaceConstraintByID Removes the specified surface constraint from the dataset.
Method Save Saves the changes.
Method SetSpatialReference Sets spatial reference.
Write-only property 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.

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.