PublicAPI.Docflow.Document.GetAllLinkedDocuments ELMA API Documentation
Get all the linked documents
 
 
Syntax

public IEnumerable<Document> GetAllLinkedDocuments(
	Document document
)

Parameters

document
Type: Document
Document. Object. Access path: PublicAPI.Docflow.Document

Return Value

Type: IEnumerable Document 
List of IDocument type objects
Examples

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

//get the list of all the linked documents 
var links = PublicAPI.Docflow.Document.GetAllLinksDocuments(doc);

//Links are the list of documents linked to the doc document
See Also