Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

...

Description

Excerpt

Sets the bullet text that will be displayed at the current list level. It uses a pattern. If the text is ASCII codes 0-8, this represents the position of the list entry number for a particular level. A list is at a maximum nine levels deep. For example, in an outline you will have numbering that changes with the level such as 1.1, 1.1.2,

...

and

...

so

...

on.

...

Signature
C#
C#
<table class="diff-macro"><thead><tr><th class="diff-macro-title">unmigrated-wiki-markup</th></tr></thead><tbody><tr><td class="diff-macro-body"><pre>
 public System.String BulletText{ set; }
{signature}{signature:</pre></td></tr></tbody></table>
} Public
Signature
vb.net
vb.net

<p>Public WriteOnly Property BulletText() As String
{signature}
{example}{code:csharp|title=C#}String</p>

Example

Code Block
csharp
csharp
titleC#

          //--- Set the 3rd list level to 1.2
          level.BulletText = "\u0000.\u0001.\u0002";
        {code}
{code:
|title=}
Code Block
vb.net
vb.net
titlevb.net

          '--- Set the 3rd list level to 1.2
          level.BulletText = "\u0000.\u0001.\u0002"
        {code}

{example}
Example