/// <summary>
        /// Displays the specified text as a numbered paragraph, of the form "n) text", where n
        /// is the paragraph number.
        /// </summary>
        public static void ShowNumberedText(RichTextBox textBox, int number, int indentLevel,
                                            string text, bool wrapText, params object[] args)
        {
            RichTextBoxDisplayHelper viewer = new RichTextBoxDisplayHelper(textBox);

            viewer.DisplayNumberedText(number, indentLevel, text, wrapText, args);
        }