{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}