This filter property is used to load the description of the To Do Items.
object.Description
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISToDoListFilter interface |
string
Display the number of the To Do Items loaded on the basis of the selected filter and their descriptions.
Dim aFilters
Dim aFilter
Dim aToDoItems
Dim aToDoItem
Dim aMessage
Set aFilters = Profile.GetToDoFilters
set aFilter = aFilters.ToDoListFilter(0)
aFilter.MaxNumber = 6
aFilter.StartFrom = 1
set aToDoItems = Profile.LoadToDoItems(aFilter)
aMessage = "To Do Items Count = " & aToDoItems.Count
for each aToDoItem in aToDoItems
aMessage = aMessage & vbNewLine & aToDoItem.Description
next
Profile.MsgBox(aMessage)
In Profile Client v8 on User Interface Description can be found in
.