ISClientTaskListFilters.Item

Description

Each of the task list filters within the collection.

Syntax

object.Item(Index)

Part Attribute Type Description
object Required
The object always implements the ISClientTaskListFilters interface
Index In, Required
int
The task list filter
Restriction: This property is readonly.

Return Value

ISClientFilter

Example

Display the number of the task list filters and some information about them.

Dim aTaskListFilters, aTaskListFilter
Dim aMessage
Dim i

Set aTaskListFilters = Profile.GetClientTasksFilters
aMessage = "Task List Filters Count = " & aTaskListFilters.Count 
  
for i = 0 to aTaskListFilters.Count - 1
  set aTaskListFilter = aTaskListFilters.Item(i)
  aMessage = aMessage & vbNewLine &_
    "Description: " & aTaskListFilter.Description & vbNewLine &_ 
    "Display Description: " & aTaskListFilter.DisplayDescription & vbNewLine &_  
    "Load From: " & aTaskListFilter.LoadFrom & vbNewLine &_  
    "Load Limit: " & aTaskListFilter.LoadLimit & vbNewLine &_  
    "Task Count: " & aTaskListFilter.TaskCount & vbNewLine   
next  
 
Profile.MsgBox(aMessage) 
Note:

In Profile Client v8 on User Interface Task List Filters can be found in Clinical > Medical Record > Tasks > Edit filters > Views.

Version information

Added in v7.8.0