Examples: Close method (NotesUIView - LotusScript®)
This view action closes the current view.
Sub Click(Source As Button)
Dim ws As New NotesUIWorkspace
Dim uiview As NotesUIView
Set uiview = ws.CurrentView
Call uiview.Close
End Sub
This view action closes the current view.
Sub Click(Source As Button)
Dim ws As New NotesUIWorkspace
Dim uiview As NotesUIView
Set uiview = ws.CurrentView
Call uiview.Close
End Sub