PublicAPI.Docflow.Document.UnArchive ELMA API Documentation
Extract the document from the archive
 
 
Syntax

public void UnArchive(
	Document document
)

Parameters

document
Type: Document
Document, which needs to be extracted from archive. Object. Access path: PublicAPI.Docflow.Document
Examples

//load the document by ID 
var doc = PublicAPI.Docflow.Document.Load(3);

//extract the document from the archive
PublicAPI.Docflow.Document.UnArchive(doc);
See Also