Spread Windows Forms 12.0 Product Documentation
ConditionalFormattingIconSetStyle Enumeration
Example Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace : ConditionalFormattingIconSetStyle Enumeration
Represents the style of the icon set.
Syntax
'Declaration
 
Public Enum ConditionalFormattingIconSetStyle 
   Inherits System.Enum
'Usage
 
Dim instance As ConditionalFormattingIconSetStyle
public enum ConditionalFormattingIconSetStyle : System.Enum 
Members
MemberDescription
CustomIndicates a set of custom icons.
FiveBoxesIndicates a set of five box icons.
FiveColoredArrowsIndicates a set of five colored arrow icons.
FiveGrayArrowsIndicates a set of five gray arrow icons.
FiveQuartersIndicates a set of five quarter icons.
FiveRatingsIndicates a set of five rating icons.
FourColoredArrowsIndicates a set of four colored arrow icons.
FourGrayArrowsIndicates a set of four gray arrow icons.
FourRatingsIndicates a set of four rating icons.
FourTrafficLightsIndicates a set of four traffic light icons.
RedToBlackIndicates a set of circle icons from red to black.
ThreeCircledSymbolsIndicates a set of three circled symbol icons.
ThreeColoredArrowsIndicates a set of three colored arrow icons.
ThreeFlagsIndicates a set of three flag icons.
ThreeGrayArrowsIndicates a set of three gray arrow icons.
ThreeRimmedTrafficLightsIndicates a set of three rimmed traffic light icons.
ThreeSignsIndicates a set of three sign icons.
ThreeStarsIndicates a set of three star icons.
ThreeTrianglesIndicates a set of three triangle icons.
ThreeUnCircledSymbolsIndicates a set of three uncircled symbol icons.
ThreeUnrimmedTrafficLightsIndicates a set of three unrimmed traffic light icons.
Example
This example creates a conditional rule.
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;

private void button1_Click(object sender, EventArgs e)
        {
FarPoint.Win.Spread.ConditionalFormattingIconSetIndex iconset = new FarPoint.Win.Spread.ConditionalFormattingIconSetIndex(FarPoint.Win.Spread.ConditionalFormattingIconSetStyle.ThreeStars, 0);
//IconSetConditionalFormatting
FarPoint.Win.Spread.IconSetConditionalFormattingRule c = new FarPoint.Win.Spread.IconSetConditionalFormattingRule(FarPoint.Win.Spread.ConditionalFormattingIconSetStyle.ThreeTriangles);
c.IconRuleSet.Insert(0, new FarPoint.Win.Spread.ConditionalFormattingIconValue(10, FarPoint.Win.Spread.ConditionalFormattingValueType.Number, true, iconset));
FarPoint.Win.Spread.ConditionalFormatting IconSetCF = new FarPoint.Win.Spread.ConditionalFormatting(new FarPoint.Win.Spread.Model.CellRange(0, 0, 2, 2), c);
//fpSpread1.Sheets[0].SetConditionalFormatting(1,1,c);
fpSpread1.Sheets[0].Models.ConditionalFormatting.Add(IconSetCF);
        }
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

 Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
        Dim iconset As New FarPoint.Win.Spread.ConditionalFormattingIconSetIndex(FarPoint.Win.Spread.ConditionalFormattingIconSetStyle.ThreeStars, 0)
        'IconSetConditionalFormatting
        Dim c As New FarPoint.Win.Spread.IconSetConditionalFormattingRule(FarPoint.Win.Spread.ConditionalFormattingIconSetStyle.ThreeTriangles)
        c.IconRuleSet.Insert(0, New FarPoint.Win.Spread.ConditionalFormattingIconValue(10, FarPoint.Win.Spread.ConditionalFormattingValueType.Number, True, iconset))
        Dim IconSetCF As New FarPoint.Win.Spread.ConditionalFormatting(New FarPoint.Win.Spread.Model.CellRange(0, 0, 2, 2), c)
        FpSpread1.Sheets(0).Models.ConditionalFormatting.Add(IconSetCF)
    End Sub
Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         FarPoint.Win.Spread.ConditionalFormattingIconSetStyle

See Also

Reference

FarPoint.Win.Spread Namespace