Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Latest commit

 

History

History
46 lines (27 loc) · 820 Bytes

webpageoptions-keywords-property-publisher.md

File metadata and controls

46 lines (27 loc) · 820 Bytes
title keywords f1_keywords ms.prod api_name ms.assetid ms.date
WebPageOptions.Keywords Property (Publisher)
vbapb10.chm544772
vbapb10.chm544772
publisher
Publisher.WebPageOptions.Keywords
8dd7b073-747e-a6f6-a20d-0b3e3d9a27b8
06/08/2017

WebPageOptions.Keywords Property (Publisher)

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

Syntax

expression. Keywords

_expression_A variable that represents a WebPageOptions object.

Return Value

String

Example

The following example sets the keywords for page four of the active publication.

Dim theWPO As WebPageOptions 
 
Set theWPO = ActiveDocument.Pages(4).WebPageOptions 
 
With theWPO 
 .Keywords = "software, hardware, computers" 
End With