Share via


WebPageOptions.Description Property (Publisher)

Returns or sets a String that represents the description of a Web page within a Web publication. Read/write.

Syntax

expression .Description

expression A variable that represents a WebPageOptions object.

Example

This example sets the description for page two of the active Web publication.

Dim theWPO As WebPageOptions 
 
Set theWPO = ActiveDocument.Pages(2).WebPageOptions 
 
With theWPO 
 .Description = "Company Profile" 
End With