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


ILasDataset.IsDirty Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > GeodatabaseExtensions > ESRI.ArcGIS.GeoDatabaseExtensions > Interfaces > IL > ILasDataset Interface > ILasDataset.IsDirty Property
ArcGIS Developer Help

ILasDataset.IsDirty Property

Indicates if the dataset has been changed since last save.

[Visual Basic .NET]
Public ReadOnly Property IsDirty As Boolean
[C#]
public bool IsDirty {get;}
[C++]
HRESULT get_IsDirty(
  Boolean* pbIsDirty
);
[C++]
Parameters
pbIsDirty [out, retval]

pbIsDirty is a parameter of type bool*

Product Availability

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

Description

Indicates whether the las dataset has been changed since the last time it was saved. Changes to the las dataset's schema (adding or removing files, computing statistics etc.) result in the las dataset becoming dirty. When a las dataset is dirty, consider using ILasDatasetEdit.Save after all the edits to avoid losing the changes.

See Also

ILasDataset Interface