ITrkItemAgent.AttributeNameExpression (property)

property AttributeNameExpression
Syntax: String = object.AttributeNameExpression
object.AttributeNameExpression = String
Description:
The AttributeNameExpression property will return all items which have attributes 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.AttributeNameExpression = ".I."
oTrkItemAgent.Execute oTrkItems
...
...
...