Completed
Last Updated: 31 Mar 2014 10:26 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 23 Oct 2013 07:23
Category:
Type: Bug Report
2
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);
}
0 comments