I have a RichTextBox in a WInForms program that is wrapping any line that is longer than 3,510 characters. I have WordWrap set to false, so all lines under that length exte
You could set the rightmargin of the richTextBox to the width of the string? Like this
richTextBox1.RightMargin = TextRenderer.MeasureText(sb.ToString(), this.richTextBox1.Font).Width;