LOTUSSCRIPT/COM/OLE CLASSES


Examples: DisplayPeople property
This form action toggles the DisplayPeople property.

%INCLUDE "lsconst.lss"

Sub Click(Source As Button)
 Dim ws As NotesUIWorkspace
 Dim uid As NotesUIDocument
 Dim uis As NotesUIScheduler
 Set ws = New NotesUIWorkspace
 Set uid = ws.CurrentDocument
 Set uis = uid.GetSchedulerObject("Main")
 If Messagebox("Do you want to change this setting?", _
 MB_YESNO + MB_QUESTION, _
 "DisplayPeople is " + _
 uis.DisplayPeople) = IDYES Then
   uis.DisplayPeople = NOT uis.DisplayPeople
 End If
End Sub

See Also