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}Returns a {{DateTime}} object representing the date this document was last printed using Word.{excerpt}
{signature:C#}
 public System.DateTime DatePrinted{ get; }
{signature}{signature:vb.net}
Public ReadOnly Property DatePrinted() As Date
{signature}
{remarks}MS Word equivalent: File menu > Properties > Statistics tab > Printed:

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

          DateTime oDateTime = oDocument.DatePrinted;
        {code}
{code:vb.net|title=vb.net}

          Dim oDateTime As DateTime = oDocument.DatePrinted
        {code}

{example}