PublicAPI.Docflow.Document.Archive ELMA API Documentation
Send Document to archive
 
 
Syntax

public void Archive(
	Document document
)

Parameters

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

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

//send the document to archive
PublicAPI.Docflow.Document.Archive(doc);
See Also