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.

<table class="wysiwyg-macro" data-macro-name="unmigrated-wiki-markup" style="background-image: url(/plugins/servlet/confluence/placeholder/macro-heading?definition=e3VubWlncmF0ZWQtd2lraS1tYXJrdXB9&amp;locale=en_GB&amp;version=2); background-repeat: no-repeat;" data-macro-body-type="PLAIN_TEXT"><tr><td class="wysiwyg-macro-body"><pre>
 public System.String BulletText{ set; }
</pre></td></tr></table>
<p>Public WriteOnly Property BulletText() As String</p>


          //--- Set the 3rd list level to 1.2
          level.BulletText = "\u0000.\u0001.\u0002";
        

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