(Contents)(Previous)(Next)

Objects and Object Lists

OfficeTalk data may be traversed using an object list and then edited using an object. For example, if you wished to traverse your list of tasks, you would access the Task List object, calling methods to iterate through the list. Once you have found a task in the list that you wish to edit, then you would access it via the Task object. With the exception of the Session object, all the objects that you will access will shared common functionality. Furthermore all object lists that you access will also share common functionality.

More:

Object List Common Functionality

Add()

Count()

SetFilter(sField As String, sOp As String, value As Variant)

SetFilterAnd(sField As String, sOp As String, value As Variant)

SetFilterOr(sField As String, sOp As String, value As Variant)

ClearFilter()

FindItemByID()

GetFirst()

GetNext()

GetLast()

GetPrev()

Object Common Functionality

Edit()

Update()

Delete()

Value(sField As String)

Value(sField As String) = expr

Name (property)

CreationDate (property)

LastEditedDate (property)


Next