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

...

Description

Excerpt

Sets or returns the presentation's

creation

date.

By

default,

[

CreationDate

|DocumentProperties.CreationDate]

returns

the

presentation's

actual

creation

date.

You

can

set

{{

CreationDate

}}

to

a

different

date,

but

this

will

not

change

the

creation

date

displayed

in

the

presentation's

Properties

sheet.

{excerpt} {signature:C#}

Signature
C#
C#
<p> public System.DateTime CreationDate{ get; set; }
{signature}{signature:</p>
} Public
Signature
vb.net
vb.net
<p>Public Property CreationDate() As Date
{signature}
{example}{code:csharp|title=C#}Date</p>
Example
 
Code Block
csharp
csharp
titleC#
            //--- Get CreationDate
          DateTime createDate = docProps.CreationDate;

          //--- Set CreationDate
          docProps.CreationDate = new DateTime(2005, 08, 04);
        {code}
{code:vbnet|title=
}
Code Block
vbnet
vbnet
titlevb.net
            '--- Get CreationDate
          Dim createDate As DateTime = docProps.CreationDate

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

{example}
Example