BlueCielo Meridian Connection API 2012 Reference Guide | BlueCielo ECM Solutions |
You are here:
Namespaces > ICMeridianAPI > Connection > FindDocuments(String, String, Object, Object, Object, Object)
FindDocuments Method (vaultidentifier, Wildcard, documenttypenames, properties, criterias, values)
Searches for documents inside the vault. Returns a variant array of document identifiers matching the
find parameters.

C# | Visual Basic | Visual C++ |
public Object FindDocuments( string vaultidentifier, string Wildcard, Object documenttypenames, Object properties, Object criterias, Object values )

- vaultidentifier (String)
- The vault to search.
- Wildcard (String)
- Optional file-system wildcard pattern. By default "*.*"
- documenttypenames (Object)
- Optional variant. A variant array of names of document types to restrict the documents included in the search result. If this parameter is not specified, all document types will match.
- properties (Object)
- Optional variant. A variant array of property names that are used as search criteria.
- criterias (Object)
- Optional variant. A variant array of criterias. An option of the Find command is a criterion operator (labeled as Condition in the PowerUser client). A typical criterion has three parts: a property, an operator, and a value. For example, Custom.ProjectNr equals 2134, where equals is the operator.
- values (Object)
- Optional variant. A variant array of values for the properties provided in the properties parameter. The length of the lists should be identical.

An array of strings containing document identifiers matching the find criteria.

The following Find operators are supported. Any of these forms may be used:
- contains, in, C, *, OP_CONTAINS
- doswildcard
- empty, EM, OP_EMPTY
- equals, equal E, EQ, =, OP_EQUALS
- less, L, <, OP_LESS)
- less equal, LE, <=, OP_LESS_EQUAL
- like, LI, %, OP_LIKE
- more, M, >, OP_MORE)
- more equal, ME, >=, OP_MORE_EQUAL
- not contains, NC, NOT IN, OP_NOT_CONTAINS
- not empty, NEM, OP_ NOT_EMPTY
- not equal, NEQ, NE, <>, OP_NOT_EQUAL
- not like, NLI, NL, OP_NOT_LIKE
- not startwith, NSW, OP_NOT_STARTWITH
- startwith, SW, OP_STARTWITH