Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Description

Excerpt

Sets or returns the workbook's creation date. By default, CreationDate returns the spreadsheet's actual creation date. You can set CreationDate to a different date, but this will not change the creation date displayed in the spreadsheet's Properties sheet.

Signature
C#
C#
<table class="diff-macro"><thead><tr><th class="diff-macro-title">unmigrated-wiki-markup</th></tr></thead><tbody><tr><td class="diff-macro-body"><pre>
 public System.DateTime CreationDate{ get; set; }
</pre></td></tr></tbody></table>
Signature
vb.net
vb.net
Public <p>Public Property CreationDate() As Date</p>Date
Example
Code Block
csharp
csharp
titleC#
            //--- Get CreationDate
          DateTime createDate = docProps.CreationDate;

          //--- Set CreationDate
          docProps.CreationDate = new DateTime(2005, 08, 04);
        
Code Block
vb.net
vb.net
titlevb.net
            '--- Get CreationDate
          Dim createDate As DateTime = docProps.CreationDate

          '--- Set CreationDate
          docProps.CreationDate = New DateTime(2005, 08, 04)