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 that represents the date and time the text in this character run was deleted (if revision tracking was on when it was deleted -- Deleted returns true).

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

          DateTime deletedTime = oCharacterRun.DeletedTime;
        
{code}
{code:vb.net
|title=vb.net
}

          Dim deletedTime As DateTime = oCharacterRun.DeletedTime
        {code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Returns a {{DateTime}} object that represents the date and time the text in this character run was deleted \(if revision tracking was on when it was deleted \-\-  Deleted returns true\).{excerpt}
{signature:C#}
 public System.DateTime DeletedTime{ get; }
Signature
{signature}{signature:vb.net
vb.net
}
Public ReadOnly Property DeletedTime() As Date
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle