GrapeCity.Xaml.SpreadSheet.Data Namespace > IconCriterion Class > IconCriterion Constructor : IconCriterion Constructor(Boolean,IconValueType,Object) |
true
use the greater than and equal to operator to calculate the value.
'Declaration Public Function New( _ ByVal isGreaterThanOrEqualTo As Boolean, _ ByVal type As IconValueType, _ ByVal value As Object _ )
'Usage Dim isGreaterThanOrEqualTo As Boolean Dim type As IconValueType Dim value As Object Dim instance As New IconCriterion(isGreaterThanOrEqualTo, type, value)
public IconCriterion( bool isGreaterThanOrEqualTo, IconValueType type, object value )
true
use the greater than and equal to operator to calculate the value.true
, use the greater than and equal to operator to calculate the value.GcSpreadSheet1.Sheets[0].Cells[0, 0].Value = 1; GcSpreadSheet1.Sheets[0].Cells[1, 0].Value = 10; GcSpreadSheet1.Sheets[0].Cells[2, 0].Value = 6; GcSpreadSheet1.Sheets[0].Cells[3, 0].Value = 3; GrapeCity.Xaml.SpreadSheet.Data.IconSetRule test = new GrapeCity.Xaml.SpreadSheet.Data.IconSetRule(); test.IconSetType = GrapeCity.Xaml.SpreadSheet.Data.IconSetType.FourTrafficLights; test.IconCriteria[0] = new GrapeCity.Xaml.SpreadSheet.Data.IconCriterion(true, GrapeCity.Xaml.SpreadSheet.Data.IconValueType.Number, 6); 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).Cells(0, 0).Value = 1 GcSpreadSheet1.Sheets(0).Cells(1, 0).Value = 10 GcSpreadSheet1.Sheets(0).Cells(2, 0).Value = 6 GcSpreadSheet1.Sheets(0).Cells(3, 0).Value = 3 Dim test As New GrapeCity.Xaml.SpreadSheet.Data.IconSetRule() test.IconSetType = GrapeCity.Xaml.SpreadSheet.Data.IconSetType.FourTrafficLights test.IconCriteria(0) = New GrapeCity.Xaml.SpreadSheet.Data.IconCriterion(True, GrapeCity.Xaml.SpreadSheet.Data.IconValueType.Number, 6) test.Ranges = New GrapeCity.Xaml.SpreadSheet.Data.CellRange() {New GrapeCity.Xaml.SpreadSheet.Data.CellRange(0, 0, 5, 1)} GcSpreadSheet1.Sheets(0).ConditionalFormats.AddRule(test)
Target Platforms: Windows Server 2012, Windows RT