PublicAPI.Docflow.Objects.DocumentHistoryProfile.Filter ELMA API Documentation
Creates an assistant for working with the "History Display Settings for Document Type" object filter
 
 
Syntax

public DocumentHistoryProfileFilterHelper Filter()

Return Value

Type: DocumentHistoryProfileFilterHelper
Examples

//creating an object filter using Assistant 
var filter = PublicAPI..DocumentHistoryProfile.Filter().Query("ID in (1,2,3,4)").Filter;

//using filter 
var documenthistoryprofileList = EntityManager<DocumentHistoryProfile>.Instance.Find(filter, null);

//where "documenthistoryprofile"List - list of output data according to filter criteria
See Also