Adds the top 10 rule or bottom 10 rule to the collection based on the Top10CondtionType.
Parameters
- type
- The Top10ConditionType top 10 condition.
- rank
- The number of top or bottom items to apply the style to.
- style
- The style that is applied to the cell when the condition is met.
- ranges
- The cell ranges where the rule is applied.
Return Value
Returns the new top 10 rule.
This example adds a top 10 rule.
GcSpreadSheet1.Sheets[0].SetValue(0, 0, 1);
GcSpreadSheet1.Sheets[0].SetValue(1, 0, 50);
GcSpreadSheet1.Sheets[0].SetValue(2, 0, 11);
GcSpreadSheet1.Sheets[0].SetValue(3, 0, 5);
var style2 = new GrapeCity.Windows.SpreadSheet.Data.StyleInfo();
style2.Background = new SolidColorBrush(Colors.Yellow);
GcSpreadSheet1.Sheets[0].ConditionalFormats.AddTop10Rule(GrapeCity.Windows.SpreadSheet.Data.Top10ConditionType.Top, 2, style2, new GrapeCity.Windows.SpreadSheet.Data.CellRange[] { new GrapeCity.Windows.SpreadSheet.Data.CellRange(0, 0, 5, 1) });
GcSpreadSheet1.Sheets(0).SetValue(0, 0, 1)
GcSpreadSheet1.Sheets(0).SetValue(1, 0, 50)
GcSpreadSheet1.Sheets(0).SetValue(2, 0, 11)
GcSpreadSheet1.Sheets(0).SetValue(3, 0, 5)
Dim style2 As New GrapeCity.Windows.SpreadSheet.Data.StyleInfo()
style2.Background = new SolidColorBrush(Colors.Yellow)
GcSpreadSheet1.Sheets(0).ConditionalFormats.AddTop10Rule(GrapeCity.Windows.SpreadSheet.Data.Top10ConditionType.Top, 2, style2, New GrapeCity.Windows.SpreadSheet.Data.CellRange() { New GrapeCity.Windows.SpreadSheet.Data.CellRange(0, 0, 5, 1) })
Target Platforms: Windows 7, Windows 8 Desktop, Windows Vista SP1 or later, Windows Server 2000, Windows 2000 Professional (SP4), Windows XP (SP2), Windows 2008, Windows 2003 Server (SP1)