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 a String that represents any keywords that are added to this file.



{remarks}
{example}{code:csharp|title=C#}

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

          //--- Set Keywords
          docProps.Keywords = "Confidential, Memo";
        
{code}
{code:vb.net
|title=vb.net
}

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

          '--- Set Keywords
          docProps.Keywords = "Confidential, Memo"
        {code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Sets or returns a {{String}} that represents any keywords that are added to this file.{excerpt}
{signature:C#}
 public System.String Keywords{ get; set; }
Signature
{signature}{signature:vb.net
vb.net
}
Public Property Keywords() As String
Remarks
MS Word
{signature}
{remarks}MS Word equivalent: File menu > Properties > Summary tab > Keywords:
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle