com.esri.arcgis.geodatabaseextensions
Interface ILasDatasetWorkspace

All Superinterfaces:
Serializable

public interface ILasDatasetWorkspace
extends Serializable

Provides access to members of LasDataset workspace.

Product Availability

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


Method Summary
 boolean isLasDataset(String name)
          Indicates if the given BSTR name is a LasDataset.
 ILasDataset openLasDataset(String name)
          Opens an existing LasDataset.
 

Method Detail

isLasDataset

boolean isLasDataset(String name)
                     throws IOException,
                            AutomationException
Indicates if the given BSTR name is a LasDataset.

Product Availability

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

Parameters:
name - The name (in)
Returns:
The pbIsDataset
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

openLasDataset

ILasDataset openLasDataset(String name)
                           throws IOException,
                                  AutomationException
Opens an existing LasDataset.

Description

Opens an existing las dataset
Returns a reference to the specified Las Dataset. If the same Las Dataset on disk that is being requested already referenced by a Las Dataset object , a reference to that object is returned. If you need to ensure you get a new, independent Las Dataset object, not a reference to an existing object, instantiate a new Las Dataset and call ILasDataset.Init

Product Availability

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

Parameters:
name - The name (in)
Returns:
A reference to a com.esri.arcgis.geodatabaseextensions.ILasDataset
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.