XEnumeration
createSubSetEnumerationByQuery( |
[in] string |
Query ); |
- Description
- creates a sub set of container items which match given query command
Items of this sub set must match used query string. Format of query depends
from real implementation. Using of "param=value" pairs isn't neccessary.
So it's possible to combine different parameters as one simple command
string.
- Parameter Query
- items of sub set must match to this query
example:
(1)
query as parameter sequence to return all elements wich match
the name pattern and supports a special feature; sort it ascending
"name= * myname_??_;sort=ascending;feature=VISIBLE"
(2)
query as command to return all elements which support special feature
and match by name pattern;ascending sort is the default
"getAllVisible( * myname_??_)"
- Returns
- an sub set of container items as an enumeration.
|