/// <summary>
        /// Displays the values in a data table in the specified rich text box.
        /// </summary>
        public static void ShowDataTable(RichTextBox textBox, DataTable dataTable,
                                         bool displayRowState)
        {
            RichTextBoxDisplayHelper viewer = new RichTextBoxDisplayHelper(textBox);

            viewer.DisplayDataTable(dataTable, displayRowState);
        }