ArcObjects Library Reference (GeoDatabaseExtensions)  

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(
  VARIANT_BOOL* pbIsDirty
);
[C++]

Parameters

pbIsDirty [out, retval]   pbIsDirty is a parameter of type VARIANT_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