Skip to main content

Examples: ViewRebuild method

  1. This view action rebuilds the view that's currently open.
Sub Click(Source As Button)
Dim workspace As New NotesUIWorkspace
Call workspace.ViewRebuild
End Sub
  1. This user subroutine rebuilds the current view, rebuilding the design and loading preferences as specified by the incoming parameters.
Sub rebuild(designChanged As Boolean, preferencesChanged As Boolean)
Dim ws As New NotesUIWorkspace
Call ws.ViewRebuild(designChanged, preferencesChanged)
End Sub