[]
Gets or sets the keywords associated with the document.
public string Keywords { get; set; }
Public Property Keywords As String
| Type | Description |
|---|---|
| string | The comma-separated keywords associated with the document, or null if no keywords have been set. |
DocumentProperties properties = new DocumentProperties();
properties.Keywords = "report, sales, quarterly";
string keywords = properties.Keywords;