FIX. RadRichTextEditor - exception when calling GetStatisticsInfo and the document is empty
To reproduce:
var d = new RadDocument();
var s = d.GetStatisticsInfo();
Workaround:
var d = new RadDocument();
if (d.Sections.Count > 0 && d.Sections.Last.Blocks.Count >0)
{
var s = d.GetStatisticsInfo();
}