Sets or returns keywords that can be used to search for the spreadsheet. In PowerPoint, a file's keywords are displayed in the Summary page of the Properties sheet.

 public System.String Keywords{ get; set; }
Public Property Keywords() As String

          //--- Get Keywords
          string keywords = docProps.Keywords;

          //--- Set Keywords
          docProps.Keywords = "PowerPointWriter, OfficeWriter";
        

          '--- Get Keywords
          Dim keywords As String = docProps.Keywords

          '--- Set Keywords
          docProps.Keywords = "PowerPointWriter, OfficeWriter"