FIX. RadRichTextBox raises ArgumentOutOfRangeException when its AutoSize property is set to True
To reproduce: use the following code and run the project:
public Form1()
{
InitializeComponent();
RadRichTextBox richTextBox = new RadRichTextBox();
richTextBox.AutoSize = true;
Controls.Add(richTextBox);
}