Completed
Last Updated: 27 Sep 2018 13:19 by Dimitar
ADMIN
Dimitar
Created on: 12 Sep 2018 11:40
Category: Spreadsheet
Type: Bug Report
1
FIX. RadSpreadsheet - the font/size of the first cell is changed when setting the associated ribbon bar.
To reproduce:
- Add a spreadsheet and add ribbon bar from the smart tag. 
- Start the application.

Workaround:
protected override void OnShown(EventArgs e)
{
    base.OnShown(e);
    var parameter = 11;
    this.radSpreadsheet1.SpreadsheetElement.CommandDescriptors.SetFontSize.Command.Execute(parameter);

    FontFamilyInfo parameter1 = new FontFamilyInfo(new System.Windows.Media.FontFamily("Calibri"));
    this.radSpreadsheet1.SpreadsheetElement.CommandDescriptors.SetFontFamily.Command.Execute(parameter1);
}
0 comments