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

<p> public System.String Keywords{ get; set; }</p>
<p>Public Property Keywords() As String</p>

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

          //--- Set Keywords
          docProps.Keywords = "ExcelWriter, WordWriter, OfficeWriter";
        
          '--- Get Keywords
          Dim keywords As String = docProps.Keywords

          '--- Set Keywords
          docProps.Keywords = "ExcelWriter, WordWriter, OfficeWriter"