Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Wiki Markup
{description}
{excerpt}Sets or returns the value of the Comments field in a presentation's Properties sheet. Comments can used to search for a PowerPoint 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 PowerPointWriter";
        {code}
{code:vbnet|title=vb.net}

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

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

{example}