Page tree

Versions Compared

Key

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

Excerpt

Sets or returns an object that represents the creation date of this file.



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

          //--- Return CreationDate
          DateTime oDateTime = docProps.CreationDate;

          //--- Set CreationDate
          docProps.CreationDate = DateTime.Now;
        
{code}
{code:vb.net
|title=vb.net
}

          '--- Return CreationDate
          Dim oDateTime As DateTime = docProps.CreationDate

          '--- Set CreationDate
          docProps.DateTime = DateTime.Now
        {code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Sets or returns an object that represents the creation date of this file.{excerpt}
{signature:C#}
 public System.DateTime CreationDate{ get; set; }
Signature
{signature}{signature:vb.net
vb.net
}
Public Property CreationDate() As Date
Remarks
MS Word
{signature}
{remarks}MS Word equivalent: File menu > Properties > General tab > Created:
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle