Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
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.

{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}
Signature
C#C#
Wiki Markup
{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}{signature:vb.net
vb.net
}
Public Property Keywords() As String
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle