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 String that represents the name of the author who inserted the text in this character run (if revision tracking was on when it was modified).

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

          string modifiedBy = oCharacterRun.ModifiedBy;
        
{code}
{code:vb.net
|title=vb.net
}

          Dim modifiedBy As String = oCharacterRun.ModifiedBy
        {code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Returns a {{String}} that represents the name of the author who inserted the text in this character run \(if revision tracking was on when it was modified\).{excerpt}
{signature:C#}
 public System.String ModifiedBy{ get; }
Signature
{signature}{signature:vb.net
vb.net
}
Public ReadOnly Property ModifiedBy() As String
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle