Spread for ASP.NET 8.0 Product Documentation
ConditionalFormatting Constructor(IEnumerable<CellRange>)
Example 


The ranges.
Initializes a new instance of the ConditionalFormatting class.
Syntax
'Declaration
 
Public Function New( _
   ByVal ranges As IEnumerable(Of CellRange) _
)
'Usage
 
Dim ranges As IEnumerable(Of CellRange)
 
Dim instance As New ConditionalFormatting(ranges)
public ConditionalFormatting( 
   IEnumerable<CellRange> ranges
)

Parameters

ranges
The ranges.
Example
This example creates a rule
protected void Page_Load(object sender, System.EventArgs e)
                       {
                           FpSpread1.Sheets[0].Cells[0, 0].Value = 3;
                           FpSpread1.Sheets[0].Cells[1, 0].Value = 2;
                           FpSpread1.Sheets[0].Cells[1, 1].Value = 10;
                           FpSpread1.Sheets[0].Cells[0, 2].Value = 1;              
                       }

protected void Button1_Click(object sender, EventArgs e)
        {
            FarPoint.Web.Spread.UnaryComparisonConditionalFormattingRule unary = new FarPoint.Web.Spread.UnaryComparisonConditionalFormattingRule(FarPoint.Web.Spread.UnaryComparisonOperator.EqualTo, 10);
            unary.Operator = FarPoint.Web.Spread.UnaryComparisonOperator.EqualTo;
            unary.Value = 10;
            unary.BackColor = Color.Red;
            unary.FontStyle = new FarPoint.Web.Spread.SpreadFontStyle(FarPoint.Web.Spread.UnderlineFontStyle.None);
            unary.FontStyle.RegularBoldItalic = FarPoint.Web.Spread.RegularBoldItalicFontStyle.Bold;

            FarPoint.Web.Spread.TopRankedValuesConditionalFormattingRule topRank = new FarPoint.Web.Spread.TopRankedValuesConditionalFormattingRule();
            topRank.IsDescending = true;
            topRank.BackColor = Color.Tomato;
            topRank.ForeColor = Color.Yellow;

            //CondtionalFormatting Constructor
            FarPoint.Web.Spread.ConditionalFormatting cf2 = new FarPoint.Web.Spread.ConditionalFormatting(new FarPoint.Web.Spread.Model.CellRange[] { new FarPoint.Web.Spread.Model.CellRange(0, 0, 1, 1), new FarPoint.Web.Spread.Model.CellRange(1, 1, 2, 2) });
            FarPoint.Web.Spread.ConditionalFormatting cf3 = new FarPoint.Web.Spread.ConditionalFormatting(new FarPoint.Web.Spread.Model.CellRange[] { new FarPoint.Web.Spread.Model.CellRange(0, 0, 1, 1), new FarPoint.Web.Spread.Model.CellRange(1, 1, 2, 2) }, topRank);
            FpSpread1.ActiveSheetView.ConditionalFormatting.Add(cf2);
            FpSpread1.ActiveSheetView.ConditionalFormatting.Add(cf3);
        }
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
            FpSpread1.Sheets(0).Cells(0, 0).Value = 3
            FpSpread1.Sheets(0).Cells(1, 0).Value = 2
            FpSpread1.Sheets(0).Cells(1, 1).Value = 10
            FpSpread1.Sheets(0).Cells(0, 2).Value = 1
        End Sub

Protected Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
            Dim unary As New FarPoint.Web.Spread.UnaryComparisonConditionalFormattingRule(FarPoint.Web.Spread.UnaryComparisonOperator.EqualTo, 10)
            unary.Operator = FarPoint.Web.Spread.UnaryComparisonOperator.EqualTo
            unary.Value = 10
            unary.BackColor = Drawing.Color.Red
            unary.FontStyle = New FarPoint.Web.Spread.SpreadFontStyle(FarPoint.Web.Spread.UnderlineFontStyle.None)
            unary.FontStyle.RegularBoldItalic = FarPoint.Web.Spread.RegularBoldItalicFontStyle.Bold

            Dim topRank As New FarPoint.Web.Spread.TopRankedValuesConditionalFormattingRule()
            topRank.IsDescending = True
            topRank.BackColor = Drawing.Color.Tomato
            topRank.ForeColor = Drawing.Color.Yellow

            'CondtionalFormatting Constructor
            Dim cf2 As New FarPoint.Web.Spread.ConditionalFormatting(New FarPoint.Web.Spread.Model.CellRange() {New FarPoint.Web.Spread.Model.CellRange(0, 0, 1, 1), New FarPoint.Web.Spread.Model.CellRange(1, 1, 2, 2)})
            Dim cf3 As New FarPoint.Web.Spread.ConditionalFormatting(New FarPoint.Web.Spread.Model.CellRange() {New FarPoint.Web.Spread.Model.CellRange(0, 0, 1, 1), New FarPoint.Web.Spread.Model.CellRange(1, 1, 2, 2)}, topRank)
            FpSpread1.ActiveSheetView.ConditionalFormatting.Add(cf2)
            FpSpread1.ActiveSheetView.ConditionalFormatting.Add(cf3)
        End Sub
Requirements

Target Platforms: Windows 7, Windows 8, Windows Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

Reference

ConditionalFormatting Class
ConditionalFormatting Members
Overload List

 

 


Copyright © GrapeCity, inc. All rights reserved.