Page tree
    Created with Raphaël 2.1.0
    Loading...
Skip to end of metadata
Go to start of metadata

Description

Sets or returns keywords that can be used to search for the presentation. In PowerPoint, a file's keywords are displayed in the Summary page of the Properties sheet.
C#
public System.String Keywords{ get; set; }
vb.net
Public Property Keywords() As String

Examples

C#
//--- Get Keywords
string keywords = docProps.Keywords;
 
//--- Set Keywords
docProps.Keywords = "PowerPointWriter, OfficeWriter";
vb.net
'--- Get Keywords
Dim keywords As String = docProps.Keywords
 
'--- Set Keywords
docProps.Keywords = "PowerPointWriter, OfficeWriter"
  • No labels