Examples: Folder method

  1. The following agent moves the current selected or open document from the folder to the folder named "test." If you are working in a view rather than a folder, the document is copied.
    Dim ws As New NotesUIWorkspace
    Call ws.folder("test", True)
  2. The following agent brings up the "Move to Folder" dialog box for the current selected or open document.
    Dim ws As New NotesUIWorkspace
    Call ws.folder(, False)