ITrkItemAgent.AttributeValueExpression (property)

property AttributeValueExpression
Syntax: String = object.AttributeValueExpression
object.AttributeValueExpression = String
Description:
The AttributeValueExpression property will return all items which have attribute values that match the given regular expression.


Example:
Dim oTrkItemAgent As Object
Dim oTrkItems As Object
Dim oTrkItem As Object

Set oTrkItemAgent = CreateObject("Tracker.TrkItemAgent")
oTrkItemAgent.AttributeValueExpression = ".I."
oTrkItemAgent.Execute oTrkItems
...
...
...