(Contents)(Previous)(Next)

GetKeys()

Description: Gets the list of keys belonging to the planner
Syntax: object.GetKeys()
Parameters:
object Required, the Planner object
Remarks: This method returns the list of planner keys belonging to this planner.
Returns: A PlannerKey list object
Example:
Dim session As Object

Set session = CreateObject("OfficeTalk.Session")

Call session.Logon(login name, password)

Set planner = session.GetPlanners.GetFirst

Set keys = planner.GetKeys

Set key = keys.GetFirst

MsgBox key.Name


Next