Click or drag to resize

IFolderBasedProjectArchiveManager Interface

Represents a folder based project archive (entries of the archive represented by files in that folder), that is currently open.

Namespace: Altaxo.Main.Services
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public interface IFolderBasedProjectArchiveManager : IProjectArchiveManager, 
	IDisposable

The IFolderBasedProjectArchiveManager type exposes the following members.

Properties
 NameDescription
Public propertyFileOrFolderName Gets the name of the file or folder. Can be null if no file or folder is set (up to now).
(Inherited from IProjectArchiveManager)
Public propertyIsDisposed Gets a value indicating whether this instance is disposed.
(Inherited from IProjectArchiveManager)
Top
Methods
 NameDescription
Public methodDisposePerforms application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
(Inherited from IDisposable)
Public methodGetArchiveReadOnlyThreadSave Intended for deferred reading of (typically only a single) project item from an archive. Gets an archive, for read-only purposes only. The call to this function should be thread-safe. It is required to call ReleaseArchiveThreadSave(Object, IProjectArchive) to release the returned archive if it is no longer in use.
(Inherited from IProjectArchiveManager)
Public methodLoadFromFolder Loads a project from a folder. The files in this folder represent the project items.
Public methodReleaseArchiveThreadSave Releases the archive that was claimed with GetArchiveReadOnlyThreadSave(Object).
(Inherited from IProjectArchiveManager)
Public methodSave Saves the specified save project and windows state to the same file or folder that was used to open the project.
(Inherited from IProjectArchiveManager)
Public methodSaveAs Saves a project into a file system folder (the project items are represented by files in that folder). The folder name is given in folderName.
Top
Events
 NameDescription
Public eventFileOrFolderNameChanged Occurs when the property FileOrFolderName has changed.
(Inherited from IProjectArchiveManager)
Top
See Also