GrapeCity.Xaml.SpreadSheet.Data
Top10Rule Constructor
Example 


Constructs a top 10 rule.
Syntax
'Declaration
 
Public Function New()
'Usage
 
Dim instance As New Top10Rule()
public Top10Rule()
Example
This example creates 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.Xaml.SpreadSheet.Data.StyleInfo();
style2.Background = new SolidColorBrush(Windows.UI.Colors.Yellow);

GrapeCity.Xaml.SpreadSheet.Data.Top10Rule test = new GrapeCity.Xaml.SpreadSheet.Data.Top10Rule();
test.Style = style2;
test.Operator = GrapeCity.Xaml.SpreadSheet.Data.Top10ConditionType.Top;
test.Rank = 2;
test.Ranges = new GrapeCity.Xaml.SpreadSheet.Data.CellRange[] { new GrapeCity.Xaml.SpreadSheet.Data.CellRange(0, 0, 5, 1) };
gcSpreadSheet1.Sheets[0].ConditionalFormats.AddRule(test);    
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.Xaml.SpreadSheet.Data.StyleInfo()
style2.Background = New SolidColorBrush(Windows.UI.Colors.Yellow)

Dim test As New GrapeCity.Xaml.SpreadSheet.Data.Top10Rule()
test.Style = style2
test.Operator = GrapeCity.Xaml.SpreadSheet.Data.Top10ConditionType.Top
test.Rank = 2
test.Ranges = New GrapeCity.Xaml.SpreadSheet.Data.CellRange() {New GrapeCity.Xaml.SpreadSheet.Data.CellRange(0, 0, 5, 1)}
GcSpreadSheet1.Sheets(0).ConditionalFormats.AddRule(test)
Requirements

Target Platforms: Windows Server 2012, Windows RT

See Also

Reference

Top10Rule Class
Top10Rule Members

 

 


Copyright © GrapeCity, inc. All rights reserved.

Support Options