Share via


WebPageOptions Property.WebPageOptions Property

Publisher Developer Reference

Returns a WebPageOptions object, which represents the properties of a single Web page within a Web publication. Read-only.

Syntax

expression.WebPageOptions

expression   A variable that represents a WebPageOptions Property object.

Return Value
WebPageOptions

Example

The following example sets the description and the background sound for the fourth page of the active Web publication.

Visual Basic for Applications
  With ActiveDocument.Pages(4).WebPageOptions
    .Description = "Company Profile"
    .BackgroundSound = "C:\CompanySounds\corporate_jingle.wav"
End With

See Also