Folder.WebViewOn property (Outlook)

Returns or sets a Boolean indicating the Web view state for a folder. Read/write.

Syntax

expression. WebViewOn

expression A variable that represents a Folder object.

Remarks

Returns True to display the webpage specified by the WebViewURL property of the Folder object.

Microsoft Outlook uses the rendering engine of the version Windows Internet Explorer installed on the client computer to display the webpage. If Internet Explorer is not installed on the client computer, Outlook will not display the webpage.

This property is always False if the value of the WebViewURL property is empty.

Also, setting the WebViewOn property to True before setting the WebViewURL property will not display the home page specified in the WebViewURL property.

Example

The following Visual Basic for Applications (VBA) example creates a subfolder under the Inbox folder and assigns a home page to it.

Sub SetupFolderHomePage() 
 
 Dim nsp As Outlook.NameSpace 
 
 Dim mpfInbox As Outlook.Folder 
 
 Dim mpfNew As Outlook.Folder 
 
 
 
 Set nsp = Application.GetNamespace("MAPI") 
 
 Set mpfInbox = nsp.GetDefaultFolder(olFolderInbox) 
 
 Set mpfNew = mpfInbox.Folders.Add("MyFolderHomePage") 
 
 mpfNew.WebViewURL = "https://www.microsoft.com" 
 
 mpfNew.WebViewOn = True 
 
End Sub

See also

Folder Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.