Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Returns the collection of open WebWindows objects in the specified object.
expression.WebWindows
*expression * Required. An expression that returns one of the objects in the Applies To list.
Example
The following example checks if any of the Web windows are set to Page view, and changes those that are in Page view to Folders view.
Private Sub GetViewModes()
Dim myWebWindows As WebWindows
Dim myWebWindow As WebWindowEx
Dim myView As FpWebViewMode
Set myWebs = Webs
Set myWebWindows = myWebs.WebWindows
For Each myWebWindow In myWebWindows
myView = myWebWindow.ViewMode
If myView = fpWebViewPage Then
myWebWindow.ViewMode = fpWebViewFolders
End If
Next
End Sub
Applies to | Application Object | WebEx Object