{description}
{excerpt}Sets or returns the value of the Comments field in a workbook's Properties sheet. Comments can used to search for an Excel file.  {excerpt}
{signature:C#}
 public System.String Comments{ get; set; }
{signature}{signature:vb.net}
Public Property Comments() As String
{signature}
{example}{code:csharp|title=C#}

          //--- Get Comments
          string comments = docProps.Comments;

          //--- Set Comments
          docProps.Comments = "Generated by ExcelWriter";
        {code}
{code:vb.net|title=vb.net}

          '--- Get Comments
          Dim comments As String = docProps.Comments

          '--- Set Comments
          docProps.Comments = "Generated by ExcelWriter"
        {code}

{example}