Examples: ViewRebuild method
- 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
- 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