gcSpreadSheet1.Sheets[0].Cells[0, 0].Value = 2;
gcSpreadSheet1.Sheets[0].Cells[0, 1].Value = 1;
gcSpreadSheet1.Sheets[0].Cells[0, 2].Value = 1;
gcSpreadSheet1.Sheets[0].Cells[1, 0].Value = 1;
var style2 = new GrapeCity.Windows.SpreadSheet.Data.StyleInfo();
style2.Background = new SolidColorBrush(Colors.Yellow);
GrapeCity.Windows.SpreadSheet.Data.FormulaRule test = new GrapeCity.Windows.SpreadSheet.Data.FormulaRule();
test.Style = style2;
test.Formula = "=A1=B1+C1";
test.Ranges = new GrapeCity.Windows.SpreadSheet.Data.CellRange[] { new GrapeCity.Windows.SpreadSheet.Data.CellRange(0, 0, 5, 1) };
gcSpreadSheet1.Sheets[0].ConditionalFormats.AddRule(test);