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


ILasDatasetWorkspace.OpenLasDataset Method (ArcObjects .NET 10.4 SDK)
ArcObjects Library Reference (GeoDatabaseExtensions)  

ILasDatasetWorkspace.OpenLasDataset Method

Opens an existing LasDataset.

[Visual Basic .NET]
Public Function OpenLasDataset ( _
    ByVal Name As String _
) As ILasDataset
[C#]
public ILasDataset OpenLasDataset (
    string Name
);
[C++]
HRESULT OpenLasDataset(
  BSTR Name,
  ILasDataset** ppLasDataset
);
[C++]

Parameters Name [in] Name is a parameter of type BSTR ppLasDataset [out, retval]
ppLasDataset is a parameter of type ILasDataset

Product Availability

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

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

See Also

ILasDatasetWorkspace Interface