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 a String representing the bullet text of this entry as it would show up if it was opened in Word.

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

          string bulletText = entry.BulletText;
        
{code}
{code:vb.net
|title=vb.net
}

          Dim bulletText As String = entry.BulletText
        {code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Sets or returns a {{String}} representing the bullet text of this entry as it would show up if it was opened in Word.{excerpt}
{signature:C#}
 public System.String BulletText{ get; }
Signature
{signature}{signature:vb.net
vb.net
}
Public ReadOnly Property BulletText() As String
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle