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 boolean that represents if this character run was added while revision tracking was turned on.

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

          bool newRun = oCharacterRun.New;
        
{code}
{code:vb.net
|title=vb.net
}

          Dim newRun As Boolean = oCharacterRun.New
        {code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Returns a {{boolean}} that represents if this character run was added while revision tracking was turned on.{excerpt}
{signature:C#}
 public boolean New{ get; }
Signature
{signature}{signature:vb.net
vb.net
}
Public ReadOnly Property [New]() As Boolean
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle