Click or drag to resize

IProjectClearIsDirty Method

Clears the IsDirty flag in a more advanced manner, supporting the needs for late loading of data etc. It should update the data needed for deferred data loading before clearing the flag.

Namespace: Altaxo.Main
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
void ClearIsDirty(
	IProjectArchiveManager archiveManager,
	IDictionary<string, IProjectItem>? entryNameToItemDictionary
)

Parameters

archiveManager  IProjectArchiveManager
The archive manager that currently manages the archive in which the project is stored.
entryNameToItemDictionary  IDictionaryString, IProjectItem
A dictionary where the keys are the archive entry names that where used to store the project items that are the values. The dictionary contains only those project items that need further handling (e.g. late load handling).
See Also