FIX. RadOffice2007ScreenTipElement - the EnableCustomSize property accepts true as false and vice versa
RadOffice2007ScreenTipElement tip = new RadOffice2007ScreenTipElement();
tip.EnableCustomSize = false; //this enables custom size
In order to enable custom size the setting should be tip.EnableCustomSize = true;. The flag is incorrect.