FarPoint.Win.Spread.NamedStyle styleCold = new FarPoint.Win.Spread.NamedStyle();
FarPoint.Win.Spread.NamedStyle styleCool = new FarPoint.Win.Spread.NamedStyle();
styleCold.BackColor = Color.Blue;
styleCool.BackColor = Color.Cyan;
FarPoint.CalcEngine.Expression one; FarPoint.CalcEngine.Expression two;
one = new FarPoint.CalcEngine.DoubleExpression(20.0);
two = new FarPoint.CalcEngine.DoubleExpression(50.0);
FarPoint.Win.Spread.Model.DefaultSheetStyleModel ds;
ds = (FarPoint.Win.Spread.Model.DefaultSheetStyleModel)fpSpread1.ActiveSheet.Mode ls.Style;
ds.SetConditionalFormat(1, 1, styleCold, FarPoint.Win.Spread.ComparisonOperator.Between, "5", "20");
ds.SetConditionalFormat(2, 2, styleCool, FarPoint.Win.Spread.ComparisonOperator.Between, one, two);
fpSpread1.ActiveSheet.Cells[1, 1].Value = 10;
fpSpread1.ActiveSheet.Cells[2, 2].Value = 32;
Dim styleCold As New FarPoint.Win.Spread.NamedStyle
Dim styleCool As New FarPoint.Win.Spread.NamedStyle
styleCold.BackColor = Color.Blue
styleCool.BackColor = Color.Cyan
Dim one As FarPoint.CalcEngine.Expression
Dim two As FarPoint.CalcEngine.Expression
one = New FarPoint.CalcEngine.DoubleExpression(20.0)
two = New FarPoint.CalcEngine.DoubleExpression(50.0)
Dim ds As FarPoint.Win.Spread.Model.DefaultSheetStyleModel
ds = FpSpread1.ActiveSheet.Models.Style
ds.SetConditionalFormat(1, 1, styleCold, FarPoint.Win.Spread.ComparisonOperator.Between, "5", "20")
ds.SetConditionalFormat(2, 2, styleCool, FarPoint.Win.Spread.ComparisonOperator.Between, one, two)
FpSpread1.ActiveSheet.Cells(1, 1).Value = 10 FpSpread1.ActiveSheet.Cells(2, 2).Value = 32