{description}
{excerpt}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.{excerpt}
{signature:C#}
 public System.String Keywords{ get; set; }
{signature}{signature:vb.net}
Public Property Keywords() As String
{signature}
{example}{code:csharp|title=C#}

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

          //--- Set Keywords
          docProps.Keywords = "ExcelWriter, WordWriter, OfficeWriter";
        {code}
{code:vb.net|title=vb.net}

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

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

{example}