ArcObjects Library Reference (GeoDatabaseExtensions)  

ILasDataset.SaveAs Method

Saves the dataset to disk using the specified name.

[Visual Basic .NET]
Public Sub SaveAs ( _
    ByVal Name As String, _
    ByVal bOverWrite As Boolean _
)
[C#]
public void SaveAs (
    string Name,
    bool bOverWrite
);
[C++]
HRESULT SaveAs(
  BSTR Name,
  VARIANT_BOOL bOverWrite
);
[C++]

Parameters

Name [in]   Name is a parameter of type BSTR bOverWrite [in]   bOverWrite is a parameter of type VARIANT_BOOL

Product Availability

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

Description

The interface pointer will reference the newly saved las dataset after the call is made.
Name is the full path (including the name) of the location to which the las dataset is to be saved.
bOverWrite, if set to True, the output las dataset will be replaced if it already exists.

See Also

ILasDataset Interface