[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.DocumentProperties.Keywords

Keywords Property

Keywords

Gets or sets the keywords associated with the document.

Declaration
public string Keywords { get; set; }
Public Property Keywords As String
Property Value
Type Description
string

The comma-separated keywords associated with the document, or null if no keywords have been set.

Examples
DocumentProperties properties = new DocumentProperties();
properties.Keywords = "report, sales, quarterly";
string keywords = properties.Keywords;