Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

Returns a DateTime object representing the date this document was last printed using Word.



{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}
Signature
C#C#
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}{signature:vb.net
vb.net
}
Public ReadOnly Property DatePrinted() As Date
Remarks
MS Word
{signature}
{remarks}MS Word equivalent: File menu > Properties > Statistics tab > Printed:
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle