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 properties of this character run were modified.

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

          DateTime propChangedTime = oCharacterRun.PropertiesChangedTime;
        
{code}
{code:vb.net
|title=vb.net
}

          Dim propChangedTime As DateTime = oCharacterRun.PropertiesChangedTime
        {code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Returns a {{DateTime}} object that represents the date and time the properties of this character run were modified.{excerpt}
{signature:C#}
 public System.DateTime PropertiesChangedTime{ get; }
Signature
{signature}{signature:vb.net
vb.net
}
Public ReadOnly Property PropertiesChangedTime() As Date
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle