LOTUSSCRIPT/COM/OLE CLASSES


Examples: DeselectAll method
This view action deselects all documents in the current view.

Sub Click(Source As Button)
 Dim ws As New NotesUIWorkspace
 Dim uiview As NotesUIView
 Set uiview = ws.CurrentView
 Call uiview.DeselectAll
End Sub

See Also