Examples: MeetingIndicator property

This form action toggles the MeetingIndicator 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, _
  "MeetingIndicator is " + _
  uis.MeetingIndicator) = IDYES Then
    uis.MeetingIndicator = NOT uis.MeetingIndicator
  End If
End Sub